Changeset 3302 in orxonox.OLD for orxonox/branches/parenting/src/p_node.h
- Timestamp:
- Dec 27, 2004, 9:31:52 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/parenting/src/p_node.h
r3277 r3302 29 29 #define DEFAULT_MODE ALL 30 30 31 class PNode {31 class PNode : public BaseObject { 32 32 33 33 public: … … 45 45 Vector getRelCoor (); 46 46 void setRelCoor (Vector* relCoord); 47 //void setRelCoor (Vector relCoord); 47 48 Vector getAbsCoor (); 48 49 void setAbsCoor (Vector* absCoord); 50 //void setAbsCoor (Vector absCoord); 49 51 void shiftCoor (Vector* shift); 52 //void shiftCoor (Vector shift); 50 53 51 54 Quaternion getRelDir (); … … 62 65 void parentDirChanged (); 63 66 void setMode (parentingMode mode); 64 virtual void update (long timeStamp); 67 68 virtual void update (float timeStamp); 69 void processTick (float dt); 70 virtual void tick (float dt); 71 72 void setName (char* newName); 73 char* getName (); 74 65 75 66 76 void debug (); 67 77 68 long timeStamp; //! this the timeStamp of when the abs{Coordinat, Direction} has been calculated 78 float timeStamp; //! this the timeStamp of when the abs{Coordinat, Direction} has been calculated 79 char* objectName; 69 80 bool bAbsCoorChanged; 70 81 bool bRelCoorChanged;
Note: See TracChangeset
for help on using the changeset viewer.