Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Aug 12, 2005, 4:54:18 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: preparing for the smoothPNode roatational

File:
1 edited

Legend:

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

    r4987 r4990  
    6262  void setRelCoor (const Vector& relCoord);
    6363  void setRelCoor (float x, float y, float z);
    64   void setRelCoorSoft(const Vector& softRelCoord);
     64  void setRelCoorSoft(const Vector& relCoordSoft);
     65  void setRelCoorSoft(float x, float y, float z);
    6566  /** @returns the relative position */
    6667  inline const Vector& getRelCoor () const { return this->relCoordinate; };
     
    7374  void setRelDir (const Quaternion& relDir);
    7475  void setRelDir (float x, float y, float z);
     76  void setRelDirSoft(const Quaternion& relDirSoft);
     77  void setRelDirSoft(float x, float y, float z);
    7578  /** @returns the relative Direction */
    7679  inline const Quaternion& getRelDir () const { return this->relDirection; };
     
    139142
    140143
    141   Vector*         toPosition;         //!< a position to wich to iterate. (This is used in conjunction with softReparent.)
     144  Vector*         toPosition;         //!< a position to which to iterate. (This is used in conjunction with softReparent.and set*CoorSoft)
     145  Quaternion*     toDirection;        //!< a direction to which to iterate. (This is used in conjunction with softReparent and set*DirSoft)
    142146
    143147  PNode*          parent;             //!< a pointer to the parent node
Note: See TracChangeset for help on using the changeset viewer.