Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6308 in orxonox.OLD for trunk/src/lib/graphics/importer/model.h


Ignore:
Timestamp:
Dec 27, 2005, 1:51:26 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: added tc a library to convert Vertice-Melanges into VertexArrayStrips. Also implemented it partly in the VertexArrayModel-class…. testing

File:
1 edited

Legend:

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

    r6222 r6308  
    3232typedef struct
    3333{
    34   unsigned int   indexToVertices[3];   //!< index to the verteces of the triangle
     34  unsigned int   indexToVertices[3];   //!< index to the vertices of the triangle
    3535  unsigned int   indexToNormals[3];    //!< index to the normals of the triangle
    3636  unsigned int   indexToTexCoor[3];    //!< index to the texture coordinates
     
    8383    inline sTriangleExt* getTriangles() const { return this->pModelInfo.pTriangles; };
    8484    /** @returns the Count of Faces of this Model */
    85     inline unsigned int getFaceCount() const { return this->pModelInfo.numTriangles; };
     85    inline unsigned int getTriangleCount() const { return this->pModelInfo.numTriangles; };
    8686
    8787
Note: See TracChangeset for help on using the changeset viewer.