Subversion Repositories gelsvn

Rev

Rev 215 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
448 jab 1
#ifndef __HMESH_SMOOTH_H
2
#define __HMESH_SMOOTH_H
149 jab 3
 
4
#include "HMesh/Manifold.h"
5
 
150 jab 6
namespace HMesh
149 jab 7
{
8
	/// Simple laplacian smoothing with an optional weight.
9
	void laplacian_smooth(HMesh::Manifold& m, float t=1.0f);
10
 
11
	/// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
12
	void taubin_smooth(HMesh::Manifold& m, int iter);
215 jab 13
 
14
	/** Fuzzy vector median smoothing is effective when it comes to
15
			preserving sharp edges. */
16
	void fvm_smooth(HMesh::Manifold& m, int iter);
149 jab 17
}
18
#endif