53 #ifndef OPENMESH_BASE_DECIMATER_DECIMATERT_HH 54 #define OPENMESH_BASE_DECIMATER_DECIMATERT_HH 61 #include <OpenMesh/Core/Utils/Property.hh> 63 #include <OpenMesh/Core/Utils/Noncopyable.hh> 84 template <
typename MeshT >
93 typedef std::vector< Module* > ModuleList;
94 typedef typename ModuleList::iterator ModuleListIterator;
115 void info( std::ostream& _os );
141 template <
typename _Module >
147 _mh.init(
new _Module(mesh()) );
148 all_modules_.push_back( _mh.module() );
157 template <
typename _Module >
163 typename ModuleList::iterator it = std::find(all_modules_.begin(),
167 if ( it == all_modules_.end() )
171 all_modules_.erase( it );
180 template <
typename Module >
184 return *_mh.module();
193 if (observer() && _n_collapses % observer()->get_interval() == 0)
195 observer()->notify(_n_collapses);
196 return !observer()->abort();
203 initialized_ =
false;
208 void update_modules(CollapseInfo& _ci)
210 typename ModuleList::iterator m_it, m_end = bmodules_.end();
211 for (m_it = bmodules_.begin(); m_it != m_end; ++m_it)
212 (*m_it)->postprocess_collapse(_ci);
213 cmodule_->postprocess_collapse(_ci);
223 bool is_collapse_legal(
const CollapseInfo& _ci);
226 float collapse_priority(
const CollapseInfo& _ci);
229 void preprocess_collapse(CollapseInfo& _ci);
232 void postprocess_collapse(CollapseInfo& _ci);
242 void set_error_tolerance_factor(
double _factor);
248 void reset(){ initialized_ =
false; };
258 ModuleList bmodules_;
264 ModuleList all_modules_;
278 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_BASE_DECIMATER_DECIMATERT_CC) 279 #define OPENMESH_BASE_DECIMATER_TEMPLATES 280 #include "BaseDecimaterT_impl.hh" 283 #endif // OPENMESH_BASE_DECIMATER_DECIMATERT_HH defined Base class for all decimation modules.
Definition: ModBaseT.hh:192
This class demonstrates the non copyable idiom.
Definition: Noncopyable.hh:71
Module & module(ModHandleT< Module > &_mh)
get module referenced by handle _mh
Definition: BaseDecimaterT.hh:181
void set_uninitialized()
Reset the initialized flag, and clear the bmodules_ and cmodule_.
Definition: BaseDecimaterT.hh:202
Observer class.
Definition: Observer.hh:75
bool is_valid() const
Check handle status.
Definition: ModBaseT.hh:100
This file contains an observer class which is used to monitor the progress of an decimater.
bool add(ModHandleT< _Module > &_mh)
add module to decimater
Definition: BaseDecimaterT.hh:142
void set_observer(Observer *_o)
Add observer.
Definition: BaseDecimaterT.hh:126
Definition: BaseDecimaterT.hh:85
Mesh & mesh()
access mesh. used in modules.
Definition: BaseDecimaterT.hh:138
Observer * observer()
Get current observer of a decimater.
Definition: BaseDecimaterT.hh:132
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:59
Base class for all decimation modules.
void reset()
Reset the status of this class.
Definition: BaseDecimaterT.hh:248
base class decimater framework
Definition: BaseDecimaterT.hh:80
Handle for mesh decimation modules.
Definition: ModBaseT.hh:83
Stores information about a halfedge collapse.
Definition: CollapseInfoT.hh:74
bool notify_observer(size_t _n_collapses)
returns false, if abort requested by observer
Definition: BaseDecimaterT.hh:191
bool is_initialized() const
Returns whether decimater has been successfully initialized.
Definition: BaseDecimaterT.hh:111