Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jun 1, 2005, 10:55:53 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags, and cleanup of NullParent

File:
1 edited

Legend:

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

    r4444 r4448  
    6161  inline const Vector& getRelCoor () const { return this->relCoordinate; };
    6262  void setAbsCoor (const Vector& absCoord);
    63   /** \retuns the absolute position */
     63  /** \returns the absolute position */
    6464  inline const Vector& getAbsCoor () const { return this->absCoordinate; };
    6565  void shiftCoor (const Vector& shift);
     
    8989  void setParent (PNode* parent);
    9090  void setParentMode (unsigned int parentingMode);
     91  /** \returns the Parenting mode of this node */
    9192  int getParentMode() const { return this->parentMode; };
    9293
    9394  void update (float dt);
    94   void processTick (float dt);
    9595
    9696  void debug ();
     
    9999 private:
    100100  void init(PNode* parent);
     101  /** \brief tells the child that the parent's Coordinate has changed */
    101102  inline void parentCoorChanged () { this->bRelCoorChanged = true; }
     103  /** \brief tells the child that the parent's Direction has changed */
    102104  inline void parentDirChanged () { this->bRelDirChanged = true; }
    103105  /** \returns the last calculated coordinate */
Note: See TracChangeset for help on using the changeset viewer.