Changeset 4448 in orxonox.OLD for orxonox/trunk/src/lib/coord/p_node.h
- Timestamp:
- Jun 1, 2005, 10:55:53 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/p_node.h
r4444 r4448 61 61 inline const Vector& getRelCoor () const { return this->relCoordinate; }; 62 62 void setAbsCoor (const Vector& absCoord); 63 /** \retu ns the absolute position */63 /** \returns the absolute position */ 64 64 inline const Vector& getAbsCoor () const { return this->absCoordinate; }; 65 65 void shiftCoor (const Vector& shift); … … 89 89 void setParent (PNode* parent); 90 90 void setParentMode (unsigned int parentingMode); 91 /** \returns the Parenting mode of this node */ 91 92 int getParentMode() const { return this->parentMode; }; 92 93 93 94 void update (float dt); 94 void processTick (float dt);95 95 96 96 void debug (); … … 99 99 private: 100 100 void init(PNode* parent); 101 /** \brief tells the child that the parent's Coordinate has changed */ 101 102 inline void parentCoorChanged () { this->bRelCoorChanged = true; } 103 /** \brief tells the child that the parent's Direction has changed */ 102 104 inline void parentDirChanged () { this->bRelDirChanged = true; } 103 105 /** \returns the last calculated coordinate */
Note: See TracChangeset
for help on using the changeset viewer.