premultiply method

Matrix4 premultiply(
  1. Matrix4 m
)

Implementation

Matrix4 premultiply(Matrix4 m) {
  return multiplyMatrices(m, this);
}