58 #ifndef OPENMESH_MC_DECIMATER_DECIMATERT_HH 59 #define OPENMESH_MC_DECIMATER_DECIMATERT_HH 81 template <
typename MeshT >
90 typedef std::vector< Module* > ModuleList;
91 typedef typename ModuleList::iterator ModuleListIterator;
106 size_t decimate(
size_t _n_collapses );
111 return ( (_n_vertices < this->
mesh().n_vertices()) ?
112 decimate( this->
mesh().n_vertices() - _n_vertices ) : 0 );
127 size_t samples(){
return randomSamples_;}
128 void set_samples(
const size_t _value){randomSamples_ = _value;}
136 size_t randomSamples_;
144 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_MULTIPLE_CHOICE_DECIMATER_DECIMATERT_CC) 145 #define OPENMESH_MULTIPLE_CHOICE_DECIMATER_TEMPLATES 149 #endif // OPENMESH_MC_DECIMATER_DECIMATERT_HH defined Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:64
size_t decimate_to(size_t _n_vertices)
Decimate to target complexity, returns number of collapses.
Definition: McDecimaterT.hh:109
McDecimaterT(Mesh &_mesh)
Constructor.
Definition: McDecimaterT.cc:82
Multiple choice decimater framework.
Definition: McDecimaterT.hh:82
~McDecimaterT()
Destructor.
Definition: McDecimaterT.cc:97
size_t decimate_constraints_only(float _factor)
Decimate only with constraints, while _factor gives the percentage of the constraints that should be ...
Definition: McDecimaterT.cc:375
size_t decimate(size_t _n_collapses)
Decimate (perform _n_collapses collapses).
Definition: McDecimaterT.cc:108
Stores information about a halfedge collapse.
Definition: CollapseInfoT.hh:80
Definition: BaseDecimaterT.hh:90
Mesh & mesh()
access mesh. used in modules.
Definition: BaseDecimaterT.hh:143
Base class for all decimation modules.
Definition: ModBaseT.hh:197
size_t decimate_to_faces(size_t _n_vertices=0, size_t _n_faces=0)
Decimate to target complexity (vertices and faces).
Definition: McDecimaterT.cc:232