Click or drag to resize
DigitalRuneMatrix44DDecomposeFast Method (Vector3D, Matrix33D, Vector3D)
Decomposes the matrix into the scale, translation, and rotation components. (This method is faster than Decompose(Vector3D, Matrix33D, Vector3D), 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 Vector3D scale,
	out Matrix33D rotation,
	out Vector3D translation
)

Parameters

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