Subversion Repositories gelsvn

Rev

Rev 182 | Rev 362 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 182 Rev 357
1
#ifndef __HMESHUTIL_QUADRIC_SIMPLIFY__H
1
#ifndef __HMESHUTIL_QUADRIC_SIMPLIFY__H
2
#define __HMESHUTIL_QUADRIC_SIMPLIFY__H
2
#define __HMESHUTIL_QUADRIC_SIMPLIFY__H
3
 
3
 
4
#include "HMesh/Manifold.h"
4
#include "HMesh/Manifold.h"
5
 
5
 
6
namespace HMesh
6
namespace HMesh
7
{
7
{
8
	void quadric_simplify(HMesh::Manifold& m, int max_work);
8
	void quadric_simplify(HMesh::Manifold& m, int max_work, double singular_thresh=0.0001, bool relocate_origin=true);
9
}
9
}
10
#endif
10
#endif
11
 
11