Beispiel #1
0
 public UICoordinates(UIAxis left, UIAxis right)
 {
     x = left;
     y = right;
 }
Beispiel #2
0
 public UICoordinates(float scaleX, float offsetX, float scaleY, float offsetY)
 {
     x = new UIAxis(scaleX, offsetX);
     y = new UIAxis(scaleY, offsetY);
 }