Subversion Repositories gelsvn

Rev

Rev 362 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 362 Rev 448
1
#ifndef __CLOSE_HOLES_H__
1
#ifndef __HMESH_CLOSE_HOLES_H__
2
#define __CLOSE_HOLES_H__
2
#define __HMESH_CLOSE_HOLES_H__
3
 
3
 
4
#include "Manifold.h"
4
#include "Manifold.h"
5
 
5
 
6
namespace HMesh
6
namespace HMesh
7
{
7
{
8
		/** This function replaces holes by faces. It is really a simple function that just
8
		/** This function replaces holes by faces. It is really a simple function that just
9
			finds all loops of edges next to missing faces. */
9
			finds all loops of edges next to missing faces. */
10
		void close_holes(Manifold& m);
10
		void close_holes(Manifold& m);
11
}
11
}
12
#endif
12
#endif
13
 
13