Tests if the 3d matrix is a right-handed rotation matrix.

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

Syntax

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

Field Value

True if the matrix is a right-handed rotation matrix, false otherwise.

Remarks

A matrix is a right-handed rotation matrix if it is orthogonal and its determinant is +1. The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also