54 #ifndef OPENMESH_SMOOTHER_SMOOTHERT_HH 55 #define OPENMESH_SMOOTHER_SMOOTHERT_HH 60 #include <OpenMesh/Core/System/config.hh> 61 #include <OpenMesh/Core/Utils/Property.hh> 62 #include <OpenMesh/Core/Utils/Noncopyable.hh> 81 typedef typename Mesh::Point Point;
84 typedef typename Mesh::EdgeHandle EdgeHandle;
123 virtual void smooth(
unsigned int _n);
187 void compute_new_positions();
188 void project_to_tangent_plane();
189 void local_error_check();
197 virtual void compute_new_positions_C0() = 0;
198 virtual void compute_new_positions_C1() = 0;
206 const Point& orig_position(VertexHandle _vh)
const 207 {
return mesh_.property(original_positions_, _vh); }
209 const NormalType& orig_normal(VertexHandle _vh)
const 210 {
return mesh_.property(original_normals_, _vh); }
212 const Point& new_position(VertexHandle _vh)
const 213 {
return mesh_.property(new_positions_, _vh); }
215 void set_new_position(VertexHandle _vh,
const Point& _p)
216 { mesh_.property(new_positions_, _vh) = _p; }
218 bool is_active(VertexHandle _vh)
const 219 {
return mesh_.property(is_active_, _vh); }
221 Component component()
const {
return component_; }
222 Continuity continuity()
const {
return continuity_; }
233 Scalar normal_deviation_;
235 Continuity continuity_;
248 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_SMOOTHERT_C) 249 #define OPENMESH_SMOOTHERT_TEMPLATES 253 #endif // OPENMESH_SMOOTHER_SMOOTHERT_HH defined
void set_relative_local_error(Scalar _err)
Set local error relative to bounding box.
void skip_features(bool _state)
enable or disable feature handling
Kernel::Scalar Scalar
Scalar type.
void initialize(Component _comp, Continuity _cont)
SmootherT(Mesh &_mesh)
constructor & destructor
virtual void smooth(unsigned int _n)
Do _n smoothing iterations.
void set_active_vertices()
Find active vertices. Resets tagged status !
Kernel::VertexHandle VertexHandle
Handle for referencing the corresponding item.
void set_absolute_local_error(Scalar _err)
Set local error as an absolute value.
Smooth tangential direction.
Kernel::Normal Normal
Normal type.
void disable_local_error_check()
Disable error control of the smoother.
Smooth tangential and normal direction.