Changeset 6423 in orxonox.OLD for trunk/src/lib/graphics/importer/static_model.h
- Timestamp:
- Jan 6, 2006, 11:59:11 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/static_model.h
r6031 r6423 11 11 #include "material.h" 12 12 #include "glincl.h" 13 #include "array.h"13 #include <vector> 14 14 #include <list> 15 15 … … 153 153 unsigned int faceCount; //!< A modelwide Counter for the faces 154 154 155 tArray<GLfloat>vertices; //!< The Array that handles the Vertices.156 tArray<GLfloat>normals; //!< The Array that handles the Normals.157 tArray<GLfloat>vTexture; //!< The Array that handles the VertexTextureCoordinates.155 std::vector<GLfloat> vertices; //!< The Array that handles the Vertices. 156 std::vector<GLfloat> normals; //!< The Array that handles the Normals. 157 std::vector<GLfloat> vTexture; //!< The Array that handles the VertexTextureCoordinates. 158 158 159 159 ModelGroup* firstGroup; //!< The first of all groups.
Note: See TracChangeset
for help on using the changeset viewer.