Multiply this matrix by the supplied <code>right</code> matrix by assuming a third row in
both matrices of <code>(0, 0, 1)</code> and store the result in <code>dest</code>.
<p>
If <code>M</code> is <code>this</code> matrix and <code>R</code> the <code>right</code> matrix,
then the new matrix will be <code>M * R</code>. So when transforming a
vector <code>v</code> with the new matrix by using <code>M * R * v</code>, the
transformation of the right matrix will be applied first!
@param right
the right operand of the matrix multiplication
@param dest
will hold the result
@return dest
Multiply this matrix by the supplied <code>right</code> matrix by assuming a third row in both matrices of <code>(0, 0, 1)</code> and store the result in <code>dest</code>. <p> If <code>M</code> is <code>this</code> matrix and <code>R</code> the <code>right</code> matrix, then the new matrix will be <code>M * R</code>. So when transforming a vector <code>v</code> with the new matrix by using <code>M * R * v</code>, the transformation of the right matrix will be applied first!
@param right the right operand of the matrix multiplication @param dest will hold the result @return dest