Gets the three excircles 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<Circle> Excircles { get; }
Visual Basic (Declaration)
Public ReadOnly Property Excircles As List(Of Circle)
Visual C++
public:
property List<Circle^>^ Excircles {
	List<Circle^>^ get ();
}

Field Value

A list containing the excircles.

Remarks

The edges of the triangle are tangents on the excircles.

The excircles have the same normal vectors as the triangle.

In the list of excircles,

  • Excircles(0) is the excircle touching Edge1
  • Excircles(1) is the excircle touching Edge2
  • Excircles(2) is the excircle touching Edge3

Exceptions

ExceptionCondition
System..::.ArithmeticExceptionThe triangle is degenerate (vertices are collinear or identical).

See Also