Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3607 in orxonox.OLD for orxonox/trunk/src/lib/coord/p_node.h


Ignore:
Timestamp:
Mar 20, 2005, 10:38:59 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: stdincl was still included everywhere. removed it out of the stdincl.h file to enable the possibility of compile-speedup. added some testclasses for vector/quaternion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/coord/p_node.h

    r3565 r3607  
    2323
    2424#include "base_object.h"
     25#include "vector.h"
    2526
    2627// FORWARD DEFINITION \\
     
    2829class Quaternion;
    2930class Vector;
     31template<class T> class tList;
    3032
    3133//! enumeration for the different translation-binding-types
     
    102104  bool bRelDirChanged;     //!< If Relative Direction has changed since last time we checked
    103105
    104   Vector relCoordinate;    //!< coordinates relative to the parent
    105   Vector absCoordinate;    //!< absolute coordinates in the world ( from (0,0,0) )
    106   Quaternion relDirection; //!< direction relative to the parent
    107   Quaternion absDirection; //!< absolute direvtion in the world ( from (0,0,1) )
     106  Vector* relCoordinate;    //!< coordinates relative to the parent
     107  Vector* absCoordinate;    //!< absolute coordinates in the world ( from (0,0,0) )
     108  Quaternion* relDirection; //!< direction relative to the parent
     109  Quaternion* absDirection; //!< absolute direvtion in the world ( from (0,0,1) )
    108110
    109111  int mode;                //!< the mode of the binding
Note: See TracChangeset for help on using the changeset viewer.