Tests if an object is coplanar to the plane.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public bool IsCoplanarTo(
	Triangle triangle
)
Visual Basic (Declaration)
Public Function IsCoplanarTo ( _
	triangle As Triangle _
) As Boolean
Visual C++
public:
bool IsCoplanarTo(
	Triangle^ triangle
)

Parameters

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

Return Value

Returns true if the plane and triangle are coplanar, false otherwise.

Remarks

Two objects are coplanar if they lie in the same plane. This test is identical to the Contains(Triangle) test.

The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also