Click or drag to resize

Matrix3FDecompose Method (Matrix3F, Vector3F)

Decomposes a matrix into a rotation and scale.

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2023.1.2.0 (2023.1.2.0)
Syntax
C#
public bool Decompose(
	out Matrix3F rotation,
	out Vector3F scale
)

Parameters

rotation
Type: NeoAxisMatrix3F
When the method completes, contains the rtoation component of the decomposed matrix.
scale
Type: NeoAxisVector3F
When the method completes, contains the scaling component of the decomposed matrix.

Return Value

Type: Boolean
Remarks
This method is designed to decompose an SRT transformation matrix only.
See Also