Gets the triangles forming the convex hull.

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

Syntax

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

Field Value

The triangles forming the convex hull.

Remarks

The triangles of the hull are oriented counterclockwise when viewed from outside the hull. Coplanar triangles are not merged.

Exceptions

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

See Also