Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 11, 2005, 2:23:54 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/heightMap: merged trunk back to the heightMap branche
merged with command:
svn merge trunk/ branches/heightMap/ -r 4122:HEAD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/heightMap/src/world_entities/terrain.cc

    r4090 r4165  
    109109void Terrain::init(void)
    110110{
    111    this->setClassName ("Terrain");
    112 
    113    this->objectList = 0;
     111  this->setClassName ("Terrain");
     112 
     113  this->objectList = 0;
    114114}
    115115
     
    130130  glMultMatrixf((float*)matrix);
    131131
    132   if (objectList)
    133     glCallList(objectList);
    134   else if (model)
    135     model->draw();
    136   //  this->model->draw();
     132  if (this->objectList)
     133    glCallList(this->objectList);
     134  else if (this->model)
     135    this->model->draw();
    137136  glPopMatrix();
    138137}
Note: See TracChangeset for help on using the changeset viewer.