Exemplo n.º 1
0
 public Action <double> Moverel(string axis)
 {
     return(act(( double point ) => {
         Ch.ToPoint(Ch.ACSC_AMF_RELATIVE, Axis[axis], point, Ch.ACSC_ASYNCHRONOUS, ref pWait);
         System.Threading.Thread.Sleep(80);
     }));
 }
Exemplo n.º 2
0
 public Action <double> Moveabs(string axis)
 {
     return(new Action <double> ((double point) => {
         Ch.ToPoint(0, Axis[axis], point, Ch.ACSC_ASYNCHRONOUS, ref pWait);
         System.Threading.Thread.Sleep(80);
     }));
 }