Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jun 22, 2006, 1:09:20 PM (18 years ago)
Author:
bensch
Message:

merged the script_engine back here

File:
1 edited

Legend:

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

    r8490 r8711  
    103103  /** @returns the absolute position */
    104104  inline const Vector& getAbsCoor () const { return this->absCoordinate; };
     105  /** @returns the absolute X coordinate. */
     106  inline float getAbsCoorX() { return this->absCoordinate.x; };
     107  /** @returns the absolute Y Coordinate */
     108  inline float getAbsCoorY() { return this->absCoordinate.y; };
     109  /** @returns the absolute Z Coordinate */
     110  inline float getAbsCoorZ() { return this->absCoordinate.z; };
     111
    105112  /** @returns the absolute position */
    106113  inline const Vector& getLastAbsCoor () const { return this->lastAbsCoordinate; };
     114 
    107115  void shiftCoor (const Vector& shift);
    108116  void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); };
Note: See TracChangeset for help on using the changeset viewer.