Gets a list of edges that could not be inserted.

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

Syntax

C#
public List<Edge> BadConstraints { get; set; }
Visual Basic (Declaration)
Public Property BadConstraints As List(Of Edge)
Visual C++
public:
property List<Edge^>^ BadConstraints {
	List<Edge^>^ get ();
	void set (List<Edge^>^ value);
}

Field Value

A list of edges not contained in the triangulation.

Remarks

A constraint can not be inserted if the XY coordinates of start and /or end point of the constraint are not contained in the initial triangulation points.

See Also