public PlainstComponents()
 {
     __pneumatics             = new PlainstPneumatics();
     __inputConveyor          = new PlainfbStepConveyor();
     __BrickInTakeOffPosition = new PlainfbDigitalSensor();
     __BrickInGripper         = new PlainfbDigitalSensor();
 }
コード例 #2
0
 protected PlainstPneumatics CreatePlainerType(PlainstPneumatics cloned)
 {
     cloned._horizontalPiston   = _horizontalPiston.CreatePlainerType();
     cloned._verticalPiston     = _verticalPiston.CreatePlainerType();
     cloned._gripper            = _gripper.CreatePlainerType();
     cloned._conveyorEndStopper = _conveyorEndStopper.CreatePlainerType();
     return(cloned);
 }
コード例 #3
0
        public PlainstPneumatics CreatePlainerType()
        {
            var cloned = new PlainstPneumatics();

            cloned._horizontalPiston   = _horizontalPiston.CreatePlainerType();
            cloned._verticalPiston     = _verticalPiston.CreatePlainerType();
            cloned._gripper            = _gripper.CreatePlainerType();
            cloned._conveyorEndStopper = _conveyorEndStopper.CreatePlainerType();
            return(cloned);
        }