Ignore:
Timestamp:
05/04/06 12:56:05 (18 years ago)
Author:
gumbau
Message:
 
File:
1 edited

Legend:

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

    r774 r891  
    6565        }; 
    6666 
    67         /// Implementation of a simplification algorithm based on images. 
    68         /** This class implements a simplification algorithm based on an image evaluation technique. */ 
    69         class ImageBasedSimplifier : public MeshSimplifier 
     67        /// 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 
    7070        { 
     71        private: 
     72 
    7173        public: 
    7274                /// Class constructor. Will call Simplifier class constructor. 
    73                 ImageBasedSimplifier (const Geometry::Mesh      *, 
     75                ViewPointDrivenSimplifier (const Geometry::Mesh         *, 
    7476                                                                                                        Geometry::TIPOFUNC              upb=0); 
    7577 
    7678                /// Class destructor. 
    77                 virtual ~ImageBasedSimplifier (void); 
     79                virtual ~ViewPointDrivenSimplifier (void); 
    7880 
    7981                /// Copy constructor 
    80                 //ImageBasedSimplifier(const ImageBasedSimplifier&); 
     82                //ViewPointDrivenSimplifier(const ViewPointDrivenSimplifier&); 
    8183 
    8284                /// Assignment operator 
    83                 //ImageBasedSimplifier& operator =(const ImageBasedSimplifier&); 
     85                //ViewPointDrivenSimplifier& operator =(const ViewPointDrivenSimplifier&); 
    8486 
    8587                /// 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. 
Note: See TracChangeset for help on using the changeset viewer.