MatrixCompose method

MatrixC MatrixCompose(
  1. Vector3C translation,
  2. QuaternionC rotation,
  3. Vector3C scale
)

Compose a transformation matrix from rotational, translational and scaling components

Implementation

MatrixC MatrixCompose(Vector3C translation, QuaternionC rotation, Vector3C scale)
  => _MatrixCompose(translation, rotation, scale);