Changeset 4579 in orxonox.OLD for orxonox/trunk/src/lib/graphics/importer/model.cc
- Timestamp:
- Jun 10, 2005, 2:59:14 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/model.cc
r4577 r4579 148 148 this->scaleFactor = 1; 149 149 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>(); 153 153 154 154 this->materialList = new tList<Material>; … … 201 201 // this creates the display List. 202 202 this->importToDisplayList(); 203 204 203 205 204 // deletes everything we allocated.
Note: See TracChangeset
for help on using the changeset viewer.