Tests if the 3d matrix is orthonormal.

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

Syntax

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

Field Value

True if the matrix is orthonormal, false otherwise.

Remarks

A matrix is orthonormal if its column vectors are pairwise orthogonal and the norm of each column vector is 1. The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also