Gets the triangles forming the convex hull.
Namespace:
ceometric.ComputationalGeometryAssembly: 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
Exception | Condition |
---|---|
System..::.InvalidOperationException | The hull has not been computed yet. |