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