Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jan 30, 2006, 10:43:00 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: Emitter is emitting correctly

File:
1 edited

Legend:

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

    r6815 r6873  
    115115  // ROTATION //
    116116  void setRelDir (const Quaternion& relDir);
    117   void setRelDir (float x, float y, float z);
     117  void setRelDir (float angle, float x, float y, float z);
    118118  void setRelDirSoft(const Quaternion& relDirSoft, float bias = 1.0);
    119   void setRelDirSoft(float x, float y, float z, float bias = 1.0);
     119  void setRelDirSoft(float angle, float x, float y, float z, float bias = 1.0);
    120120  /** @returns the relative Direction */
    121121  inline const Quaternion& getRelDir () const { return this->prevRelDirection; };
     
    125125  inline Vector getRelDirV() const { return this->prevRelDirection.apply(Vector(0,1,0)); };
    126126  void setAbsDir (const Quaternion& absDir);
    127   void setAbsDir (float x, float y, float z);
     127  void setAbsDir (float angle, float x, float y, float z);
    128128  void setAbsDirSoft(const Quaternion& absDirSoft, float bias = 1.0);
    129   void setAbsDirSoft(float x, float y, float z, float bias = 1.0);
     129  void setAbsDirSoft(float angle, float x, float y, float z, float bias = 1.0);
    130130  void shiftDir (const Quaternion& shift);
    131131  /** @returns the absolute Direction */
Note: See TracChangeset for help on using the changeset viewer.