Apply scaling to this matrix by scaling the unit axes by the given x and y and store the result in <code>dest</code>.
<p>
If <code>M</code> is <code>this</code> matrix and <code>S</code> the scaling matrix,
then the new matrix will be <code>M * S</code>. So when transforming a
vector <code>v</code> with the new matrix by using <code>M * S * v</code>, the scaling will be applied first!
@param x
the factor of the x component
@param y
the factor of the y component
@param dest
will hold the result
@return dest
Matrix3x2dscale(double x, double y, Matrix3x2d dest)
Apply scaling to this matrix by scaling the unit axes by the given x and y and store the result in <code>dest</code>. <p> If <code>M</code> is <code>this</code> matrix and <code>S</code> the scaling matrix, then the new matrix will be <code>M * S</code>. So when transforming a vector <code>v</code> with the new matrix by using <code>M * S * v</code>, the scaling will be applied first!
@param x the factor of the x component @param y the factor of the y component @param dest will hold the result @return dest