Changeset 1634 for code/branches/gcc43/src/orxonox/hud
- Timestamp:
- Jun 29, 2008, 7:36:33 PM (16 years ago)
- Location:
- code/branches/gcc43/src/orxonox/hud
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gcc43/src/orxonox/hud/BarOverlayElement.h
r1568 r1634 54 54 void clearColours(); 55 55 56 inlinevoid setRightToLeft(bool r2l)56 void setRightToLeft(bool r2l) 57 57 { this->right2Left_ = r2l; } 58 inlinebool getRightToLeft() const58 bool getRightToLeft() const 59 59 { return this->right2Left_; } 60 inlinefloat getValue() const60 float getValue() const 61 61 { return this->value_; } 62 62 -
code/branches/gcc43/src/orxonox/hud/HUD.h
r1567 r1634 55 55 void setFPS(); 56 56 57 inlinestd::list<RadarObject*>& getRadarObjects()57 std::list<RadarObject*>& getRadarObjects() 58 58 { return this->roSet_; } 59 59 -
code/branches/gcc43/src/orxonox/hud/Navigation.h
r1568 r1634 49 49 float getDist2Focus() const; 50 50 51 inlineRadarObject* getFocus() const51 RadarObject* getFocus() const 52 52 { return this->focus_; } 53 53 void releaseFocus(); -
code/branches/gcc43/src/orxonox/hud/RadarObject.h
r1566 r1634 46 46 47 47 void setMaterial(const ColourValue& colour, const std::string& texturename); 48 inlinevoid setColour(const ColourValue& colour)48 void setColour(const ColourValue& colour) 49 49 { this->setMaterial(colour, this->texturename_); } 50 inlinevoid setTexture(const std::string& texturename)50 void setTexture(const std::string& texturename) 51 51 { this->setMaterial(this->colour_, texturename); } 52 inlinevoid resetMaterial()52 void resetMaterial() 53 53 { this->setMaterial(this->colour_, this->texturename_); } 54 54 … … 56 56 Vector3 getOrientedVelocity() const; 57 57 58 inlineWorldEntity* getObject() const58 WorldEntity* getObject() const 59 59 { return this->object_; } 60 inlineOgre::PanelOverlayElement* getPanel() const60 Ogre::PanelOverlayElement* getPanel() const 61 61 { return this->panel_; } 62 62
Note: See TracChangeset
for help on using the changeset viewer.