Changeset 891 for GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Timestamp:
- 05/04/06 12:56:05 (19 years ago)
- Location:
- GTP/trunk/Lib/Geom/shared/GTGeometry/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMesh.h
r774 r891 46 46 SubMesh *mSubMesh; ///< Array of subMesehs 47 47 size_t mSubMeshCount; ///< Total count of subMeshes 48 MeshType mType; ///< Type of mesh49 48 50 49 //OSCAR -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoMeshSimplifier.h
r774 r891 65 65 }; 66 66 67 /// Implementation of a simplification algorithm based on images.68 /** This class implements a simplification algorithm based on a n imageevaluation technique. */69 class ImageBasedSimplifier : public MeshSimplifier67 /// Implementation of a simplification algorithm based on viewpoint. 68 /** This class implements a simplification algorithm based on a viewpoint evaluation technique. */ 69 class ViewPointDrivenSimplifier : public MeshSimplifier 70 70 { 71 private: 72 71 73 public: 72 74 /// Class constructor. Will call Simplifier class constructor. 73 ImageBasedSimplifier (const Geometry::Mesh *,75 ViewPointDrivenSimplifier (const Geometry::Mesh *, 74 76 Geometry::TIPOFUNC upb=0); 75 77 76 78 /// Class destructor. 77 virtual ~ ImageBasedSimplifier (void);79 virtual ~ViewPointDrivenSimplifier (void); 78 80 79 81 /// Copy constructor 80 // ImageBasedSimplifier(const ImageBasedSimplifier&);82 //ViewPointDrivenSimplifier(const ViewPointDrivenSimplifier&); 81 83 82 84 /// Assignment operator 83 // ImageBasedSimplifier& operator =(const ImageBasedSimplifier&);85 //ViewPointDrivenSimplifier& operator =(const ViewPointDrivenSimplifier&); 84 86 85 87 /// Starts the simplification process. Receives as a parameter the LOD factor in a range of [0,1]. Implements the Simplifier::Simplify method to perform an image based simplification. -
GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoSubMesh.h
r826 r891 9 9 #include "GeoSerializable.h" 10 10 11 namespace Geometry { 11 namespace Geometry 12 { 12 13 13 14 /// SubMesh interface
Note: See TracChangeset
for help on using the changeset viewer.