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