Beispiel #1
0
 public void TranslateTransform(float dx, float dy)
 {
     if (matrix == null)
     {
         matrix = new MatrixX();
     }
     matrix.Translate(dx, dy);
 }
Beispiel #2
0
 public void TranslateTransform(float dx, float dy, MatrixOrderX order)
 {
     matrix.Translate(dx, dy, order);
 }