toMatrix4 method

Matrix4 toMatrix4()

Converts this DecomposedTransform to a Matrix4.

Implementation

Matrix4 toMatrix4() {
  return Matrix4.compose(translation, rotation, scale);
}