Tests if the triangle is equilateral.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public bool IsEquilateral { get; }
Visual Basic (Declaration)
Public ReadOnly Property IsEquilateral As Boolean
Visual C++
public:
property bool IsEquilateral {
	bool get ();
}

Field Value

True if the length of the edges of the triangle are almost equal, false otherwise.

Remarks

The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also