Click or drag to resize

Matrix44Decompose Method

Decomposes this matrix to translation, rotation and scale elements. Returns true if matrix can be decomposed; false otherwise.

Namespace: CFX.Structures.Geometry
Assembly: CFX (in CFX.dll) Version: 2.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
Syntax
public bool Decompose(
	out Vector3 scale,
	out Quaternion rotation,
	out Vector3 translation
)

Parameters

scale  Vector3
Scale vector as an output parameter.
rotation  Quaternion
Rotation quaternion as an output parameter.
translation  Vector3
Translation vector as an output parameter.

Return Value

Boolean
true if matrix can be decomposed; false otherwise.
See Also