Changeset 2204 for GTP/trunk/Lib
- Timestamp:
- 03/07/07 17:54:27 (18 years ago)
- 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 20 20 virtual void GoToLod(Real)=0; 21 21 virtual Real GetCurrentLodFactor(void) const =0; 22 virtual Geometry::IndexData * GetIndexDataInterface(void) =0;22 virtual Geometry::IndexData * GetIndexDataInterface(void) const =0; 23 23 24 24 private: -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoLodTreeLibrary.h
r2150 r2204 60 60 61 61 /// 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; } 63 63 64 64 /// Retrieves a reference to the IndexData interface that manages the trunk -
GTP/trunk/Lib/Geom/shared/GTGeometry/src/GeoLodStripsLibrary.cpp
r2150 r2204 307 307 // Returns the number of vertices of the highest LOD. 308 308 //------------------------------------------------------------------------- 309 uint32 LodStripsLibrary::MaxVertices()309 /*uint32 LodStripsLibrary::MaxVertices() 310 310 { 311 311 return mMaxVerticesLOD; … … 324 324 return number_of_vertices; 325 325 } 326 326 */ 327 327 //------------------------------------------------------------------------- 328 328 // Returns the number of triangles of the highest LOD. … … 382 382 // Only the LODs in that range are stored and used. 383 383 //------------------------------------------------------------------------- 384 void LodStripsLibrary::TrimByLod(uint32 minLod, uint32 maxLod)384 /*void LodStripsLibrary::TrimByLod(uint32 minLod, uint32 maxLod) 385 385 { 386 386 // Refresh number of vercies of the max lod.
Note: See TracChangeset
for help on using the changeset viewer.