Tests if the 3d matrix is orthogonal.

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

Syntax

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

Field Value

True if the matrix is orthogonal, false otherwise.

Remarks

A matrix is orthogonal if its column vectors are pairwise orthogonal. The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also