Subversion Repositories gelsvn

Rev

Rev 646 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 646 Rev 652
Line 25... Line 25...
25
    /// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
25
    /// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
26
    void taubin_smooth(HMesh::Manifold& m, int iter=1);
26
    void taubin_smooth(HMesh::Manifold& m, int iter=1);
27
 
27
 
28
    /** Smooth meshes by first filtering normals and then refitting the mesh */
28
    /** Smooth meshes by first filtering normals and then refitting the mesh */
29
    void anisotropic_smooth(HMesh::Manifold& m, int iter, NormalSmoothMethod nsm);
29
    void anisotropic_smooth(HMesh::Manifold& m, int iter, NormalSmoothMethod nsm);
-
 
30
 
-
 
31
    /// Tangential area weighted smoothing.
-
 
32
    void TAL_smoothing(HMesh::Manifold& m, float w, int iter=1);
-
 
33
 
30
}
34
}
31
#endif
35
#endif
32
 
36