MatrixCompose method

MatrixD MatrixCompose(
  1. Vector3D translation,
  2. QuaternionD rotation,
  3. Vector3D scale
)

Implementation

MatrixD MatrixCompose(
  Vector3D translation,
  QuaternionD rotation,
  Vector3D scale,
) => run(
  () => _debugLabels.MatrixCompose(translation, rotation, scale),
  () => .compose(translation, rotation, scale),
);