Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3449 in orxonox.OLD for orxonox/trunk/src/vector.h


Ignore:
Timestamp:
Mar 2, 2005, 2:23:47 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: documented orxonox.cc/h world.cc/h vector.cc/h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/vector.h

    r3365 r3449  
    1010
    1111#include <math.h>
     12//! PI the circle-constant
    1213#define PI 3.14159265359f
    1314
     
    2021  public:
    2122 
    22   float x, y, z;
     23  float x; //!< The x Coordinate of the Vector.
     24  float y; //!< The y Coordinate of the Vector.
     25  float z; //!< The z Coordinate of the Vector.
    2326
    2427  Vector (float x, float y, float z) : x(x), y(y), z(z) {}  //!< assignment constructor
     
    5154 public:
    5255        Vector v;       //!< Imaginary Vector
    53         float w; //!< Real part of the number
     56        float w;        //!< Real part of the number
    5457
    5558        Quaternion ();
     
    7275
    7376 private:
    74         float DELTA;
     77        float DELTA;      //!< resolution of calculation
    7578
    7679};
Note: See TracChangeset for help on using the changeset viewer.