Gets the edges of the triangle.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.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

A list containing the edges of the triangle.

Remarks

The list contains Edge1, Edge2 and Edge3 in this order

See Also