Matrix2x4::*

Matrix2x4::*
inline friend const Matrix2x4 operator *(const Matrix2x4 & m1, const Matrix2x4 & m2);
inline friend const PointF operator *(const Matrix2x4 & m, const PointF & pt);
inline friend const RectF operator *(const Matrix2x4 & m, const RectF & r);
Description

Matrix multiplication (transform values and creates a new matrix). Note that matrix multiplication is not commutative.

Parameters
Parameters 
Description 
const Matrix2x4 & m1 
The first matrix. 
const Matrix2x4 & m2 
The second matrix which is concatenated with the first matrix. 
const Matrix2x4 & m 
Matrix which is used to transform the point or the rectangle. 
const PointF & pt 
Point which is transformed by the matrix m. 
const RectF & r 
Rectangle that is transformed by matrix m. 
Return Value

A Matrix2x4/PointF/RectF value containing the result of * operator.