Gets a list of all points that could not be triangulated.

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 all points that could not be triangulated.

Remarks

This list contains all points that initially were part of the TriangulationPoints but are not part of the triangulation. These are points that
  • have identical x and y coordinates. The point with the smallest z-coordinate is kept.
  • cause numerical problems during the triangulation.

See Also