Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 23, 2005, 11:32:19 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: removed redundant stuff

File:
1 edited

Legend:

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

    r4677 r4678  
    111111  inline const GLfloat* getVertexArray(void) const { return this->vertices->getArray(); };
    112112  /** \returns the VertexCount of this Model */
    113   inline unsigned int getVertexArrayCount(void) const { return this->vertexCount; };
     113  inline unsigned int getVertexCount(void) const { return this->vertexCount; };
    114114
    115115  /** \returns a Pointer to the Normals-Array, if it was deleted it returns NULL */
    116116  inline const GLfloat* getNormalsArray(void) const { return this->normals->getArray(); };
    117117  /** \returns the NormalsCount of this Model */
    118   inline unsigned int getNormalsArrayCount(void) const { return this->normalCount; };
     118  inline unsigned int getNormalsCount(void) const { return this->normalCount; };
    119119
    120120  /** \returns a Pointer to the TexCoord-Array, if it was deleted it returns NULL */
    121121  inline const GLfloat* getTexCoordArray(void) const { return this->vTexture->getArray(); };
    122122  /** \returns the TexCoord-Count of this Model */
    123   inline unsigned int getTexCoordArrayCount(void) const { return this->texCoordCount; };
     123  inline unsigned int getTexCoordCount(void) const { return this->texCoordCount; };
     124
     125  /** \returns the Count of Faces of this Model */
     126  inline unsigned int getFaceCount() const { return this->faceCount; };
    124127
    125128
     
    140143  void finalize(void);
    141144
    142   /** \returns The number of Vertices of the Model */
    143   inline int getVertexCount(void) const { return this->vertexCount; };
    144   /** \returns The number of Normals of the Model */
    145   inline int getNormalCount(void) const { return this->normalCount; };
    146   /** \returns The number of Texture Coordinates of the Model */
    147   inline int getTexCoordCount(void) const { return this->texCoordCount; };
    148   /** \returns The number of Faces of the entire Model */
    149   inline unsigned int getFaceCount() const { return this->faceCount; };
    150145
    151146 protected:
Note: See TracChangeset for help on using the changeset viewer.