コード例 #1
0
ファイル: Router.cs プロジェクト: glocklueng/cnc_machine
        float rout_speed = 2; // Routing speed (inches per minute)

        #endregion Fields

        #region Constructors

        public Router(IHardware d)
        {
            commands = new List<RouterCommand>();
            device = d;
            d.onRobotReady += new EventHandler(this.RobotReady);
            d.onPositionUpdate += new EventHandler(RouterPositionUpdate);
            currentPosition = new PointF(0, 0);
            actualPosition = new PointF(0, 0);
        }
コード例 #2
0
 public abstract void Execute(IHardware d);
コード例 #3
0
ファイル: MoveTool.cs プロジェクト: glocklueng/cnc_machine
 public override void Execute(IHardware d)
 {
     Console.WriteLine("Going to " + toPoint);
     Vector3 p = new Vector3(toPoint.X, toPoint.Y, toPoint.Z);
     d.GoTo(p, tool_speed);
 }