Decomposes this matrix to translation, rotation and scale elements. Returns true if matrix can be decomposed; false otherwise.
            
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic bool Decompose(
	out Vector3 scale,
	out Quaternion rotation,
	out Vector3 translation
)
Public Function Decompose ( 
	<OutAttribute> ByRef scale As Vector3,
	<OutAttribute> ByRef rotation As Quaternion,
	<OutAttribute> ByRef translation As Vector3
) As Boolean
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
Booleantrue if matrix can be decomposed; 
false otherwise.
See Also