Changeset 5390 in orxonox.OLD for trunk/src/lib/graphics/importer
- Timestamp:
- Oct 16, 2005, 2:25:22 AM (19 years ago)
- Location:
- trunk/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/model.cc
r5308 r5390 162 162 this->scaleFactor = 1; 163 163 164 this->vertices = new Array<GLfloat>();165 this->vTexture = new Array<GLfloat>();166 this->normals = new Array<GLfloat>();164 this->vertices = new tArray<GLfloat>(); 165 this->vTexture = new tArray<GLfloat>(); 166 this->normals = new tArray<GLfloat>(); 167 167 168 168 this->materialList = new tList<ModelMaterial>; -
trunk/src/lib/graphics/importer/model.h
r5321 r5390 15 15 16 16 // FORWARD DEFINITION // 17 template<class T> class Array;17 template<class T> class tArray; 18 18 template<class T> class tList; 19 19 … … 184 184 unsigned int faceCount; //!< A modelwide Counter for the faces 185 185 unsigned int triangleCount; //!< Number of triangles >= faceCount 186 Array<GLfloat>*vertices; //!< The Array that handles the Vertices.187 Array<GLfloat>*normals; //!< The Array that handles the Normals.188 Array<GLfloat>*vTexture; //!< The Array that handles the VertexTextureCoordinates.186 tArray<GLfloat>* vertices; //!< The Array that handles the Vertices. 187 tArray<GLfloat>* normals; //!< The Array that handles the Normals. 188 tArray<GLfloat>* vTexture; //!< The Array that handles the VertexTextureCoordinates. 189 189 sTriangleExt* triangles; //!< The Array of triangles in the abstract_model.h style 190 190
Note: See TracChangeset
for help on using the changeset viewer.