Exemplo n.º 1
0
 public void ScaleTransform(float sx, float sy)
 {
     if (matrix == null)
     {
         matrix = new MatrixX();
     }
     matrix.Scale(sx, sy);
 }
Exemplo n.º 2
0
 public void ScaleTransform(float sx, float sy, MatrixOrderX order)
 {
     matrix.Scale(sx, sy, order);
 }