Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 3, 2011, 4:18:34 PM (13 years ago)
Author:
dafrick
Message:

Committing muster-lösung.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/tutorial/src/orxonox/worldentities/AutonomousDrone.h

    r8011 r8012  
    109109            //TODO: Place your set-functions here.
    110110            // - hint: auxiliary thrust, rotation thrust.
    111 
     111            /**
     112            @brief Sets the auxiliary thrust to the input amount.
     113            @param thrust The amount of thrust.
     114            */
     115            inline void setAuxiliaryThrust( float thrust )
     116                { this->auxiliaryThrust_ = thrust; }
     117            /**
     118            @brief Sets the rotation thrust to the input amount.
     119            @param thrust The amount of thrust.
     120            */
     121            inline void setRotationThrust( float thrust )
     122                { this->rotationThrust_ = thrust; }
     123           
    112124            /**
    113125            @brief Gets the primary thrust to the input amount.
     
    117129                { return this->primaryThrust_; }
    118130            //TODO: Place your get-functions here.
     131            /**
     132            @brief Gets the auxiliary thrust to the input amount.
     133            @return The amount of thrust.
     134            */
     135            inline float getAuxiliaryThrust()
     136                { return this->auxiliaryThrust_; }
     137                /**
     138            @brief Gets the rotation thrust to the input amount.
     139            @return The amount of thrust.
     140            */
     141            inline float getRotationThrust()
     142                { return this->auxiliaryThrust_; }
    119143
    120144        private:
Note: See TracChangeset for help on using the changeset viewer.