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