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.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
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