Computes the spatial intersection of two objects.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Point Intersect3d(
	Circle circle
)
Visual Basic (Declaration)
Public Function Intersect3d ( _
	circle As Circle _
) As Point
Visual C++
public:
Point^ Intersect3d(
	Circle^ circle
)

Parameters

circle
Type: ceometric.VectorGeometry..::.Circle
A circle.

Return Value

Returns
  • the intersection point of the edge and circle if the edge intersects circle
  • null if the edge does not intersect circle. In particular, it returns
  • null if the edge is coplanar or parallel to circle.

Remarks

Use Intersect2d(Triangle) for coplanar intersection.

See Also