- Timestamp:
- Nov 26, 2008, 7:48:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickups2/src/orxonox/objects/worldentities/pawns/SpaceShip.h
r2087 r2289 74 74 inline float getMaxSecondarySpeed() const 75 75 { return this->maxSecondarySpeed_; } 76 inline floatgetMaxRotation() const77 { return this->maxRotation_ .valueDegrees(); }76 inline const Degree& getMaxRotation() const 77 { return this->maxRotation_; } 78 78 inline float getTransAcc() const 79 79 { return this->translationAcceleration_; } 80 inline floatgetRotAcc() const81 { return this->rotationAcceleration_ .valueDegrees(); }80 inline const Degree& getRotAcc() const 81 { return this->rotationAcceleration_; } 82 82 inline float getTransDamp() const 83 83 { return this->translationDamping_; } … … 90 90 float translationAcceleration_; 91 91 float translationDamping_; 92 93 92 Degree maxRotation_; 94 93 Degree rotationAcceleration_;
Note: See TracChangeset
for help on using the changeset viewer.