Tests if the convex hull contains a point.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public bool Contains(
	Point point
)
Visual Basic (Declaration)
Public Function Contains ( _
	point As Point _
) As Boolean
Visual C++
public:
bool Contains(
	Point^ point
)

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point.

Return Value

Returns true if the 3d convex hull contains point, false otherwise. Returns true if the point lies on the convex hull.

Exceptions

ExceptionCondition
System..::.InvalidOperationExceptionThe hull has not been computed yet.

See Also