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

Parameters

triangle
Type: ceometric.VectorGeometry..::.Triangle
A triangle.

Return Value

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

Remarks

Use Intersect2d(Triangle) for coplanar intersection.

See Also