Matrix2d.scaleLocal

Pre-multiply scaling to this matrix by scaling the base axes by the given x and y factors. <p> If <code>M</code> is <code>this</code> matrix and <code>S</code> the scaling matrix, then the new matrix will be <code>S * M</code>. So when transforming a vector <code>v</code> with the new matrix by using <code>S * M * v</code>, the scaling will be applied last!

@param x the factor of the x component @param y the factor of the y component @return this

  1. Matrix2d scaleLocal(double x, double y, Matrix2d dest)
  2. Matrix2d scaleLocal(double x, double y)
    struct Matrix2d
    ref return
    scaleLocal
    (
    double x
    ,
    double y
    )

Meta