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

Field Value

The orthocenter of the triangle.

Remarks

The orthocenter is the intersection point of the three altitudes of the triangle.

Exceptions

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

See Also