| QuaternionDIsNumericallyNormalized Property |
Returns a value indicating whether this quaternion is normalized (the
Modulus
is numerically equal to 1).
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public bool IsNumericallyNormalized { get; }
Public ReadOnly Property IsNumericallyNormalized As Boolean
Get
public:
property bool IsNumericallyNormalized {
bool get ();
}
member IsNumericallyNormalized : bool with get
Property Value
Type:
Boolean if this
QuaternionD is normalized; otherwise,
.
Remarks IsNumericallyNormalized compares the
Modulus (length) of this
quaternion against 1.0 using the default tolerance value (see
EpsilonD).
See Also