コード例 #1
0
 public NavigationInstruction(NavigationInstruction ni)
 {
     this.line   = ni.line;
     this.opcode = ni.opcode;
     this.X      = ni.X;
     this.Y      = ni.Y;
     this.a      = ni.a;
     this.b      = ni.b;
 }
コード例 #2
0
 public NavigationInstruction(int line, navigation_command opcode, double x, double y, int a, int b)
 {
     this.line   = line;
     this.opcode = opcode;
     this.X      = (float)x;
     this.Y      = (float)y;
     this.a      = a;
     this.b      = b;
 }
コード例 #3
0
 public NavigationInstruction(NavigationInstruction ni)
 {
     this.line = ni.line;
     this.opcode = ni.opcode;
     this.X = ni.X;
     this.Y = ni.Y;
     this.a = ni.a;
     this.b = ni.b;
 }
コード例 #4
0
 public NavigationInstruction(int line, navigation_command opcode, double x, double y, int a, int b)
 {
     this.line = line;
     this.opcode = opcode;
     this.X = (float)x;
     this.Y = (float)y;
     this.a = a;
     this.b = b;
 }
コード例 #5
0
 public NavigationInstruction()
 {
     this.opcode = navigation_command.EMPTY;
 }
コード例 #6
0
 public NavigationInstruction()
 {
     this.opcode = navigation_command.EMPTY;
 }