Gets the tangential triangle 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 Triangle TangentialTriangle { get; }
Visual Basic (Declaration)
Public ReadOnly Property TangentialTriangle As Triangle
Visual C++
public:
property Triangle^ TangentialTriangle {
	Triangle^ get ();
}

Field Value

The tangential triangle.

Remarks

The tangential triangle is tangential to the circumcircle at the vertices of the triangle.

The tangential triangle does not exist if the center of the circumcircle lies outside the triangle. In this case, this property returns null.

Exceptions

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

See Also