Changeset 6263 in orxonox.OLD for branches/height_map/src/lib
- Timestamp:
- Dec 22, 2005, 6:43:49 PM (19 years ago)
- Location:
- branches/height_map/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/height_map/src/lib/graphics/importer/vertex_array_model.cc
r6262 r6263 224 224 for (j = 0; j < sizeX; j++) 225 225 { 226 this->addIndice(sizeY*i + j); 227 this->addIndice(sizeY*(i+1) + j); 228 } 226 this->addIndice( sizeY*i + j ); 227 this->addIndice( sizeY*(i+1) + j ); 228 } 229 this->newStripe(); 229 230 this->debug(); 230 this->newStripe();231 231 } 232 232 } -
branches/height_map/src/lib/graphics/importer/vertex_array_model.h
r6262 r6263 11 11 #include "glincl.h" 12 12 13 #include "array.h"14 13 #include <vector> 15 14
Note: See TracChangeset
for help on using the changeset viewer.