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

Parameters

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

Return Value

Returns
  • the intersection line of the plane and plane if the plane intersects plane
  • null if the plane does not intersect plane. In particular, it returns
  • null if the plane is parallel to plane
  • null if the plane is coplanar to plane

See Also