premultiply method

Matrix3 premultiply(
  1. Matrix3 m
)

Multiplies this matrix with the given matrix. So the order of the multiplication is switched compared to {@link Matrix3#multiply}.

Implementation

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