Defines the behavior of a velocity motor that works on three degrees of freedom. Used when the MotorSettings' motorType is set to velocityMotor.
상속: VelocityMotorSettings
예제 #1
0
 internal MotorSettingsOrientation(SolverUpdateable motor)
     : base(motor)
 {
     servo         = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
예제 #2
0
 internal MotorSettings3D(EntitySolverUpdateable motor)
     : base(motor)
 {
     servo         = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
예제 #3
0
 internal MotorSettingsOrientation(EntitySolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
 public MotorSettings3D(SolverUpdateable motor)
     : base(motor)
 {
     servo         = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
예제 #5
0
 public MotorSettingsOrientation(SolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettingsOrientation(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }
 internal MotorSettings3D(SolverUpdateable motor)
     : base(motor)
 {
     servo = new ServoSettings3D(this);
     velocityMotor = new VelocityMotorSettings3D(this);
 }