Click or drag to resize
DigitalRuneMatrix44FDecomposeFast Method (Vector3F, QuaternionF, Vector3F)
Decomposes the matrix into the scale, translation, and rotation components. (This method is faster than Decompose(Vector3F, QuaternionF, Vector3F), but the matrix must be a valid 3D scale/rotation/translation (SRT) matrix.)

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public void DecomposeFast(
	out Vector3F scale,
	out QuaternionF rotation,
	out Vector3F translation
)

Parameters

scale
Type: DigitalRune.Mathematics.AlgebraVector3F
The scale component of the matrix.
rotation
Type: DigitalRune.Mathematics.AlgebraQuaternionF
The rotation component of the matrix.
translation
Type: DigitalRune.Mathematics.AlgebraVector3F
The translation component of the matrix.
Remarks
See Also