Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3446 in orxonox.OLD for orxonox/trunk/src/light.cc


Ignore:
Timestamp:
Mar 2, 2005, 11:12:55 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: light Comments/cleanup→ next step perfection :)

File:
1 edited

Legend:

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

    r3444 r3446  
    4444/**
    4545   \brief standard deconstructor
    46    \todo this deconstructor is not jet implemented - do it
    47 
     46   
     47   first disables Lighting
     48   then deletes all the lights
     49   then deletes the rest of the allocated memory
     50   and in the end sets the singleton Reference to zero.
    4851*/
    4952Light::~Light ()
     
    8588  // set default values
    8689  this->currentLight->lightNumber = lightNumber;
    87   this->setPosition(Vector(0.0, 0.0, 0.0));
     90  this->setPosition(0.0, 0.0, 0.0);
    8891  this->setDiffuseColor(1.0, 1.0, 1.0);
    8992  this->setSpecularColor(1.0, 1.0, 1.0);
    90   //  lmodelAmbient[] = {.1, .1, .1, 1.0};
    9193}
    9294
     
    154156/**
    155157   \brief delete light.
    156    \param lightnumber the number of the light to delete
     158   \param lightNumber the number of the light to delete
    157159*/
    158160void Light::deleteLight(int lightNumber)
     
    188190}
    189191
     192/**
     193   \brief Sets a Position for the Light.
     194   \param x the x-coordinate
     195   \param y the y-coordinate
     196   \param z the z-coordinate
     197*/
    190198void Light::setPosition(GLfloat x, GLfloat y, GLfloat z)
    191199{
Note: See TracChangeset for help on using the changeset viewer.