public GcodeParameter(GcodeToken tok)
 {
     this.OpCode = GcodeOpCode.ParseOpCode(tok.ID.ToString());
     this.Value = tok.Value;
 }
Beispiel #2
0
 public GcodeParameter(GcodeToken tok)
 {
     this.OpCode = GcodeOpCode.ParseOpCode(tok.ID.ToString());
     this.Value  = tok.Value;
 }
 public GcodeParameter(GcodeOpCode.OpCodes opcode, double fval)
 {
     this.OpCode = opcode;
     this.Value = fval;
 }
Beispiel #4
0
 public GcodeParameter(GcodeOpCode.OpCodes opcode, double fval)
 {
     this.OpCode = opcode;
     this.Value  = fval;
 }