Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 12, 2009, 11:12:01 AM (15 years ago)
Author:
landauf
Message:

small adjustments

File:
1 edited

Legend:

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

    r2766 r2775  
    4545            virtual void tick(float dt);
    4646
    47            
     47
    4848            virtual void moveFrontBack(const Vector2& value);
    4949            virtual void moveRightLeft(const Vector2& value);
     
    5353            virtual void rotatePitch(const Vector2& value);
    5454            virtual void rotateRoll(const Vector2& value);
    55            
    56            
     55
     56
    5757            inline void moveFrontBack(float value)
    5858            { this->moveFrontBack(Vector2(value, 0)); }
     
    6161            inline void moveUpDown(float value)
    6262            { this->moveUpDown(Vector2(value, 0)); }
    63            
     63
    6464            inline void rotateYaw(float value)
    6565            { this->rotateYaw(Vector2(value, 0)); }
     
    6868            inline void rotateRoll(float value)
    6969            { this->rotateRoll(Vector2(value, 0)); }
    70            
     70
    7171        private:
    72             DroneController *myController_;
    73            
     72            DroneController* myController_;
     73
    7474            Vector3 steering_;
    7575            btVector3 localLinearAcceleration_;
Note: See TracChangeset for help on using the changeset viewer.