Click or drag to resize
DigitalRuneQuaternionFConjugated Property
Returns the conjugate of the quaternion.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public QuaternionF Conjugated { get; }

Property Value

Type: QuaternionF
The conjugate of this quaternion.
Remarks

The conjugate of a quaternion is calculated by negating the vector component.

q* = w - ix - jy - kz

The property does not change this quaternion. To conjugate this instance you need to call Conjugate.

See Also