Searched refs:controlFraction (Results 1 – 7 of 7) sorted by relevance
/dports/games/palomino/palomino/src/program/ |
H A D | aircraft_models.cc | 341 RotateRudder( *mSubgraphRudder, controlFraction ); in RotateControlSurfaces() 491 RotateRudder( *mSubgraphRudder, controlFraction ); in RotateControlSurfaces() 648 RotateRudder( *mSubgraphRudder, controlFraction ); in RotateControlSurfaces() 944 RotateRudder( *mSubgraphRudder, controlFraction ); in RotateControlSurfaces() 1424 mAileronFraction = controlFraction; in RotateControlSurfaces() 1714 RotateRudder( *mSubgraphRudder0, controlFraction ); in RotateControlSurfaces() 1715 RotateRudder( *mSubgraphRudder1, controlFraction ); in RotateControlSurfaces() 1716 RotateRudder( *mSubgraphRudder2, controlFraction ); in RotateControlSurfaces() 1717 RotateRudder( *mSubgraphRudder3, controlFraction ); in RotateControlSurfaces() 2007 RotateRudder( *mSubgraphRudder, controlFraction ); in RotateControlSurfaces() [all …]
|
H A D | aircraft_models.hh | 60 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 90 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 124 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 170 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 224 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 250 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 283 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 339 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 366 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); 399 virtual void RotateControlSurfaces( const uint axis, const fp controlFraction ); [all …]
|
/dports/games/palomino/palomino/src/object/ |
H A D | aircraft.cc | 240 Aircraft::PhysicalRotate( uint axis, fp controlFraction, Milliseconds controlFreq ) in PhysicalRotate() argument 244 ASSERT( ABS(controlFraction) < 1.1f ); in PhysicalRotate() 270 deg = deg * controlFraction; in PhysicalRotate() 303 RotateControlSurfaces( axis, controlFraction ); in PhysicalRotate() 776 Aircraft::RotateAileron( Subgraph& subgraph, const fp controlFraction, const eAileron aileron ) in RotateAileron() argument 780 RotateAileron( subgraph, controlFraction, aileron, GetSpecs().mAileronOffset ); in RotateAileron() 793 specs.mAileronROF * controlFraction * int(aileron) ); // "aileron" = +-1 in RotateAileron() 799 Aircraft::RotateElevator( Subgraph& subgraph, const fp controlFraction ) in RotateElevator() argument 806 …subgraph.Rotate( MODEL_AXIS_PITCH, specs.mElevatorROF * controlFraction ); // ROF : "radian of fr… in RotateElevator() 811 Aircraft::RotateRudder( Subgraph& subgraph, const fp controlFraction, const eRudder rudder ) in RotateRudder() argument [all …]
|
H A D | aircraft.hh | 73 public: virtual void PhysicalRotate( uint axis, fp controlFraction, Milliseconds control… 103 protected: void RotateAileron( Subgraph& subgraph, const fp controlFraction, const … 104 protected: void RotateAileron( Subgraph& subgraph, const fp controlFraction, const … 105 protected: void RotateElevator( Subgraph& subgraph, const fp controlFraction ); 106 protected: void RotateRudder( Subgraph& subgraph, const fp controlFraction, const e…
|
H A D | craft.hh | 37 public: virtual void PhysicalRotate( uint axis, fp controlFraction, Milliseconds control…
|
/dports/games/palomino/palomino/src/control/ |
H A D | command.cc | 89 fp controlFraction = 0; strm >> controlFraction; in Read() local 92 return new CommandPhysicalRotate( axis, controlFraction, Milliseconds(controlFreq) ); in Read() 205 CommandPhysicalRotate::CommandPhysicalRotate( uint axis, fp controlFraction, Milliseconds controlFr… in CommandPhysicalRotate() argument 207 mControlFraction(controlFraction), in CommandPhysicalRotate()
|
H A D | command.hh | 130 … CommandPhysicalRotate( uint axis, fp controlFraction, Milliseconds controlFreq );
|