Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 18, 2007, 4:47:58 PM (16 years ago)
Author:
nicolasc
Message:
  • changed comments to doxygen tags in flocking
  • reduced ogre depency in HUD and ParticleInterface
  • various
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/Arrival.h

    r597 r618  
    66#define Arrical_Class
    77
    8 #include <Ogre.h>
     8// #include <Ogre.h>
    99#include <OgreVector3.h>
    1010
     
    2121
    2222  public:
    23     Vector3 location;  // locationvector of the element
    24     Vector3 speed;  // speedvector of the element
    25     Vector3 acceleration;  // accelerationvector of the element
    26     Vector3 target;  //target to arrive
    27     int accelerationForwards;  //from steering-interface
    28     int MaxSpeed;  //from steering-interface
     23    Vector3 location;           //!< locationvector of the element
     24    Vector3 speed;              //!< speedvector of the element
     25    Vector3 acceleration;       //!< accelerationvector of the element
     26    Vector3 target;             //!< target to arrive
     27    int accelerationForwards;   //!< from steering-interface
     28    int MaxSpeed;               //!< from steering-interface
    2929
    3030
     
    7070      speed = (speed+getDirection());
    7171      speed.normalise();
    72       speed = speed*length; 
     72      speed = speed*length;
    7373      if (relativeDirectApproach > 4) {
    7474        //accelerate
Note: See TracChangeset for help on using the changeset viewer.