Ignore:
Timestamp:
01/09/09 02:16:38 (15 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/Geometry.h

    r3126 r3259  
    1818{ 
    1919        friend class ResourceManager; 
    20         friend class EntityMerger; 
    2120 
    2221public: 
     
    3029                         Texcoord2 *texcoords,  
    3130                         int numVertices,  
    32                          bool delData, 
     31                         bool deleteData, 
    3332                         Vector3 *tangents); 
    3433        /** Detructor destroying the opengl resources. 
     
    4847        inline bool HasTexture() const { return mHasTexture; } 
    4948         
     49 
     50        ////////////// 
     51        //-- these functions return the specified data 
     52        //-- only if deleteData has not been switched on in the consruction 
     53 
     54        Vector3 *GetVertices(int &numVertices) const; 
     55 
     56        Vector3 *GetNormals(int &numNormals) const; 
     57 
     58        Vector3 *GetTangents(int &numTangents) const; 
     59 
     60        Texcoord2 *GetTexCoords(int &numTexCoords) const; 
     61 
    5062 
    5163protected: 
Note: See TracChangeset for help on using the changeset viewer.