preScale method

Matrix preScale(
  1. double sx,
  2. double sy
)

Pre-scale this matrix.

Implementation

Matrix preScale(double sx, double sy) => Matrix.scale(sx, sy).concat(this);