Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 10, 2005, 2:59:14 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: array is now also a template

File:
1 edited

Legend:

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

    r4577 r4579  
    148148  this->scaleFactor = 1;
    149149
    150   this->vertices = new Array();
    151   this->vTexture = new Array();
    152   this->normals = new Array();
     150  this->vertices = new Array<GLfloat>();
     151  this->vTexture = new Array<GLfloat>();
     152  this->normals = new Array<GLfloat>();
    153153
    154154  this->materialList = new tList<Material>;
     
    201201  // this creates the display List.
    202202  this->importToDisplayList();
    203 
    204203
    205204  // deletes everything we allocated.
Note: See TracChangeset for help on using the changeset viewer.