Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8485 in orxonox.OLD for branches/script_engine/src/lib/coord


Ignore:
Timestamp:
Jun 15, 2006, 5:33:25 PM (18 years ago)
Author:
snellen
Message:

helicopter scripted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/script_engine/src/lib/coord/p_node.h

    r8186 r8485  
    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  void shiftCoor (const Vector& shift);
    106113  void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); };
Note: See TracChangeset for help on using the changeset viewer.