Ignore:
Timestamp:
05/04/06 12:56:05 (19 years ago)
Author:
gumbau
Message:
 
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  
    4646                SubMesh *mSubMesh;        ///< Array of subMesehs 
    4747                size_t   mSubMeshCount;   ///< Total count of subMeshes 
    48                 MeshType mType;           ///< Type of mesh 
    4948 
    5049                //OSCAR 
  • 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. 
  • GTP/trunk/Lib/Geom/shared/GTGeometry/include/GeoSubMesh.h

    r826 r891  
    99#include "GeoSerializable.h" 
    1010 
    11 namespace Geometry { 
     11namespace Geometry 
     12{ 
    1213 
    1314        /// SubMesh interface 
Note: See TracChangeset for help on using the changeset viewer.