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(
	Ellipse ellipse
)
Visual Basic (Declaration)
Public Function Intersect3d ( _
	ellipse As Ellipse _
) As Point
Visual C++
public:
Point^ Intersect3d(
	Ellipse^ ellipse
)

Parameters

ellipse
Type: ceometric.VectorGeometry..::.Ellipse
An ellipse.

Return Value

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

Remarks

Use Intersect2d(Ellipse) for coplanar intersection.

See Also