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 Edge Intersect3d(
	Plane plane
)
Visual Basic (Declaration)
Public Function Intersect3d ( _
	plane As Plane _
) As Edge
Visual C++
public:
Edge^ Intersect3d(
	Plane^ plane
)

Parameters

plane
Type: ceometric.VectorGeometry..::.Plane
A plane.

Return Value

Returns
  • the intersection edge of the ellipse and plane if the ellipse intersects plane
  • null if the ellipse does not intersect plane.
  • null if the ellipse is coplanar or parallel to plane.

Remarks

The intersection edge has zero length if plane touches the ellipse in one point.

See Also