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 point of the circle and plane if the circle intersects plane and
  • null if the circle does not intersect plane. In particular, it returns
  • null if the circle is coplanar or parallel to plane

See Also