Changeset 8711 in orxonox.OLD for trunk/src/lib/coord
- Timestamp:
- Jun 22, 2006, 1:09:20 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/coord/p_node.h
r8490 r8711 103 103 /** @returns the absolute position */ 104 104 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 105 112 /** @returns the absolute position */ 106 113 inline const Vector& getLastAbsCoor () const { return this->lastAbsCoordinate; }; 114 107 115 void shiftCoor (const Vector& shift); 108 116 void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); };
Note: See TracChangeset
for help on using the changeset viewer.