Tests if a point lies on the 2d convex hull.

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

Syntax

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

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point.
useExactArithmetic
Type: System..::.Boolean
True if exact arithmetic shall be used, false otherwise.

Return Value

Returns true if point lies on the circumference of the 2d convex hull, false otherwise.

See Also