premultiply method

Matrix4 premultiply(
  1. Matrix4 m
)

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

Implementation

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