Subversion Repositories gelsvn

Rev

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

Rev 182 Rev 215
Line 8... Line 8...
8
	/// Simple laplacian smoothing with an optional weight.
8
	/// Simple laplacian smoothing with an optional weight.
9
	void laplacian_smooth(HMesh::Manifold& m, float t=1.0f);
9
	void laplacian_smooth(HMesh::Manifold& m, float t=1.0f);
10
 
10
 
11
	/// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
11
	/// Taubin smoothing is similar to laplacian smoothing but reduces shrinkage
12
	void taubin_smooth(HMesh::Manifold& m, int iter);
12
	void taubin_smooth(HMesh::Manifold& m, int iter);
-
 
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);
13
}
17
}
14
#endif
18
#endif