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

Parameters

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

Return Value

Returns
  • 1 or 2 intersection points of the arc and plane if the arc intersects plane and
  • null if the arc does not intersect plane. In particular, it returns
  • null if the arc is coplanar or parallel to plane

See Also