Subversion Repositories gelsvn

Rev

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

Rev 362 Rev 363
Line 7... Line 7...
7
{
7
{
8
	/** Garland Heckbert simplification in our own implementation. 
8
	/** Garland Heckbert simplification in our own implementation. 
9
		max_work indicates the number of collapses that we wish to perform. The singular_thresh defines how
9
		max_work indicates the number of collapses that we wish to perform. The singular_thresh defines how
10
		small singular values from the SVD we accept. Relocate origin decides whether the new points should be
10
		small singular values from the SVD we accept. Relocate origin decides whether the new points should be
11
		a subset of the old (false) or in optimal positions (true). */
11
		a subset of the old (false) or in optimal positions (true). */
12
	void quadric_simplify(HMesh::Manifold& m, int max_work, double singular_thresh=0.0001, bool relocate_origin=true);
12
	void quadric_simplify(HMesh::Manifold& m, double keep_fraction, double singular_thresh=0.0001, bool relocate_origin=true);
13
}
13
}
14
#endif
14
#endif