Gets the edges forming the perimeter of the convex hull in clockwise orientation.
Namespace:
ceometric.ComputationalGeometryAssembly: ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.2.0.0 (2.2.0.0)
Syntax
| C# |
|---|
public List<Edge> Edges { get; } |
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property Edges As List(Of Edge) |
| Visual C++ |
|---|
public: property List<Edge^>^ Edges { List<Edge^>^ get (); } |
Field Value
The edges forming the perimeter of the convex hull in clockwise orientation.
Remarks
Clockwise orientation means that two consecutive edges in the list always form a right turn.
Exceptions
| Exception | Condition |
|---|---|
| System..::.InvalidOperationException | The hull has not been computed yet. |