Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/graphics/light.cc


Ignore:
Timestamp:
Jul 1, 2005, 12:48:48 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: changed (void) → ()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/light.cc

    r4739 r4746  
    7373   \brief destroys a Light
    7474*/
    75 Light::~Light(void)
     75Light::~Light()
    7676{
    7777  glDisable(lightsV[this->lightNumber]);
     
    181181   \brief draws this Light. Being a World-entity the possibility to do this lies at hand.
    182182*/
    183 void Light::draw(void) const
     183void Light::draw() const
    184184{
    185185  float pos[4] = {this->getAbsCoor().x, this->getAbsCoor().y, this->getAbsCoor().z, 1.0};
     
    192192   \brief Prints out some nice formated debug information about the Light
    193193*/
    194 void Light::debug(void) const
     194void Light::debug() const
    195195{
    196196  PRINT(0)(":: %d ::  -- reference %p\n", this->lightNumber, this);
     
    348348   \brief outputs debug information about the Class and its lights
    349349*/
    350 void LightManager::debug(void) const
     350void LightManager::debug() const
    351351{
    352352  PRINT(0)("=================================\n");
Note: See TracChangeset for help on using the changeset viewer.