Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/graphics/light.cc
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/light.cc
r4739 r4746 73 73 \brief destroys a Light 74 74 */ 75 Light::~Light( void)75 Light::~Light() 76 76 { 77 77 glDisable(lightsV[this->lightNumber]); … … 181 181 \brief draws this Light. Being a World-entity the possibility to do this lies at hand. 182 182 */ 183 void Light::draw( void) const183 void Light::draw() const 184 184 { 185 185 float pos[4] = {this->getAbsCoor().x, this->getAbsCoor().y, this->getAbsCoor().z, 1.0}; … … 192 192 \brief Prints out some nice formated debug information about the Light 193 193 */ 194 void Light::debug( void) const194 void Light::debug() const 195 195 { 196 196 PRINT(0)(":: %d :: -- reference %p\n", this->lightNumber, this); … … 348 348 \brief outputs debug information about the Class and its lights 349 349 */ 350 void LightManager::debug( void) const350 void LightManager::debug() const 351 351 { 352 352 PRINT(0)("=================================\n");
Note: See TracChangeset
for help on using the changeset viewer.