premultiply method

Matrix3 premultiply(
  1. Matrix3 m
)

Implementation

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