Matrix2x4::*=

Matrix2x4::*=
inline const Matrix2x4& operator *=(const Matrix2x4 & m);
Description

The *= operator transforms the passed matrix by concatenating it with the original matrix. This function is equivalent to the Prepend function.

Parameters
Parameters 
Description 
const Matrix2x4 & m 
Matrix that is prepended to the original matrix. 
Return Value

A Matrix2x4 reference to the transformed matrix.