Subversion Repositories gelsvn

Rev

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

Rev Author Line No. Line
149 jab 1
#ifndef __POLYGONIZATION_FAIR_POLYGONIZE_H__
2
#define __POLYGONIZATION_FAIR_POLYGONIZE_H__
3
 
4
#include "Geometry/RGrid.h"
5
#include "HMesh/Manifold.h"
6
 
155 jab 7
namespace HMesh
149 jab 8
{
9
	template<class T>
10
	void fair_polygonize(const Geometry::RGrid<T>& voxel_grid, 
11
											 HMesh::Manifold& mani, float iso,
169 jab 12
											 bool invert_contour=false,
13
											 bool connect=true,
14
											 bool push=false);
15
 
16
	template<class T>
17
	void cuberille_polygonize(const Geometry::RGrid<T>& voxel_grid, 
18
														HMesh::Manifold& mani, float iso,
19
														bool invert_contour=false,
20
														bool connect=true,
21
														bool push=false);
149 jab 22
}
23
 
24
 
25
#endif