示例#1
0
文件: Joint.cs 项目: SasNst/RSTGui
        /// <summary>
        /// Constructor linking the needed controller to the joint
        /// </summary>
        /// <param name="linkedController">Controller class of the associated robot controller</param>
        public Joint(Controller linkedController, int number)
        {
            LinkedController = linkedController;
            Number = number;

            // TODO remove this part
            State = JointState.Standby;


        }
示例#2
0
 public AngularJoint(Controller linkedController, int number) : base(linkedController, number) { }
示例#3
0
 public LinearJoint(Controller linkedController, int number) : base(linkedController, number) { }
示例#4
0
文件: Joint.cs 项目: SasNst/RSTGui
 /// <summary>
 /// Method to set the controller for the robot joint
 /// </summary>
 /// <param name="linkedController">Controller class of the associated robot controller</param>
 public void SetController(Controller linkedController)
 {
     LinkedController = linkedController;
 }