59 #ifndef OPENMESH_SMOOTHER_SMOOTHERT_HH
60 #define OPENMESH_SMOOTHER_SMOOTHERT_HH
65 #include <OpenMesh/Core/System/config.hh>
66 #include <OpenMesh/Core/Utils/Property.hh>
67 #include <OpenMesh/Core/Utils/Noncopyable.hh>
86 typedef typename Mesh::Point Point;
89 typedef typename Mesh::EdgeHandle EdgeHandle;
128 virtual void smooth(
unsigned int _n);
192 void compute_new_positions();
193 void project_to_tangent_plane();
194 void local_error_check();
202 virtual void compute_new_positions_C0() = 0;
203 virtual void compute_new_positions_C1() = 0;
211 const Point& orig_position(VertexHandle _vh)
const
212 {
return mesh_.property(original_positions_, _vh); }
214 const NormalType& orig_normal(VertexHandle _vh)
const
215 {
return mesh_.property(original_normals_, _vh); }
217 const Point& new_position(VertexHandle _vh)
const
218 {
return mesh_.property(new_positions_, _vh); }
220 void set_new_position(VertexHandle _vh,
const Point& _p)
221 { mesh_.property(new_positions_, _vh) = _p; }
223 bool is_active(VertexHandle _vh)
const
224 {
return mesh_.property(is_active_, _vh); }
226 Component component()
const {
return component_; }
227 Continuity continuity()
const {
return continuity_; }
238 Scalar normal_deviation_;
240 Continuity continuity_;
253 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_SMOOTHERT_C)
254 #define OPENMESH_SMOOTHERT_TEMPLATES
258 #endif // OPENMESH_SMOOTHER_SMOOTHERT_HH defined
void initialize(Component _comp, Continuity _cont)
void skip_features(bool _state)
enable or disable feature handling
void disable_local_error_check()
Disable error control of the smoother.
void set_active_vertices()
Find active vertices. Resets tagged status !
void set_absolute_local_error(Scalar _err)
Set local error as an absolute value.
virtual void smooth(unsigned int _n)
Do _n smoothing iterations.
SmootherT(Mesh &_mesh)
constructor & destructor
Smooth tangential and normal direction.
Kernel::Scalar Scalar
Scalar type.
Kernel::VertexHandle VertexHandle
Handle for referencing the corresponding item.
Smooth tangential direction.
void set_relative_local_error(Scalar _err)
Set local error relative to bounding box.
Kernel::Normal Normal
Normal type.