Beispiel #1
0
 public CommandScale(CommandDecimal value)
     : this(value, value)
 {
 }
Beispiel #2
0
 public CommandPosition(double x, double y)
 {
     this.x = x;
     this.y = y;
 }
Beispiel #3
0
 public CommandScale(CommandDecimal x, CommandDecimal y)
 {
     this.x = x;
     this.y = y;
 }