Gets a list of points that could not be added to the hull.

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

Syntax

C#
public List<Point> BadPoints { get; }
Visual Basic (Declaration)
Public ReadOnly Property BadPoints As List(Of Point)
Visual C++
public:
property List<Point^>^ BadPoints {
	List<Point^>^ get ();
}

Field Value

A list of points that could not be added to the hull.

Remarks

A point can not be added to the hull if numerical problems occur. This list should always be empty because the hull is generated using exact arithmetic.

See Also