Changeset 2204


Ignore:
Timestamp:
03/07/07 17:54:27 (17 years ago)
Author:
gumbau
Message:
 
Location:
GTP/trunk/Lib/Geom/shared/GTGeometry
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodObject.h

    r1788 r2204  
    2020                virtual void GoToLod(Real)=0; 
    2121                virtual Real GetCurrentLodFactor(void) const =0; 
    22                 virtual Geometry::IndexData * GetIndexDataInterface(void)=0; 
     22                virtual Geometry::IndexData * GetIndexDataInterface(void) const =0; 
    2323 
    2424        private: 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodTreeLibrary.h

    r2150 r2204  
    6060 
    6161                /// Retrieves a reference to the IndexData interface that manages the foliage, provided in the constructor 
    62                 virtual Geometry::IndexData * GetIndexDataInterface(void){ return dataRetrievalInterface; } 
     62                virtual Geometry::IndexData * GetIndexDataInterface(void) const { return dataRetrievalInterface; } 
    6363 
    6464                /// Retrieves a reference to the IndexData interface that manages the trunk 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/src/GeoLodStripsLibrary.cpp

    r2150 r2204  
    307307//      Returns the number of vertices of the highest LOD. 
    308308//------------------------------------------------------------------------- 
    309 uint32  LodStripsLibrary::MaxVertices() 
     309/*uint32        LodStripsLibrary::MaxVertices() 
    310310{ 
    311311        return  mMaxVerticesLOD; 
     
    324324        return  number_of_vertices; 
    325325} 
    326  
     326*/ 
    327327//------------------------------------------------------------------------- 
    328328//      Returns the number of triangles of the highest LOD. 
     
    382382//      Only the LODs in that range are stored and used. 
    383383//------------------------------------------------------------------------- 
    384 void            LodStripsLibrary::TrimByLod(uint32 minLod, uint32 maxLod) 
     384/*void          LodStripsLibrary::TrimByLod(uint32 minLod, uint32 maxLod) 
    385385{ 
    386386        //      Refresh number of vercies of the max lod. 
Note: See TracChangeset for help on using the changeset viewer.