Subversion Repositories gelsvn

Rev

Rev 448 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 448 Rev 595
Line -... Line 1...
-
 
1
/* ----------------------------------------------------------------------- *
-
 
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
-
 
3
 * Copyright (C) the authors and DTU Informatics
-
 
4
 * For license and list of authors, see ../../doc/intro.pdf
-
 
5
 * ----------------------------------------------------------------------- */
-
 
6
 
-
 
7
/**
1
#ifndef __HMESH_CLOSE_HOLES_H__
8
 @file close_holes.h
2
#define __HMESH_CLOSE_HOLES_H__
9
 Close holes in polygonal meshes.
-
 
10
 A hole is really just a loop of edges with no face in the center.
-
 
11
 This file contains a function that fills these holes.
-
 
12
 */
3
 
13
 
4
#include "Manifold.h"
14
#ifndef __HMESH_CLOSE_HOLES_H__
-
 
15
#define __HMESH_CLOSE_HOLES_H__
5
 
16
 
6
namespace HMesh
17
namespace HMesh
7
{
18
{
-
 
19
    class Manifold;
8
		/** This function replaces holes by faces. It is really a simple function that just
20
    /** \brief This function replaces holes by faces. 
9
			finds all loops of edges next to missing faces. */
21
    It is really a simple function that just finds all loops of edges next to missing faces. */
10
		void close_holes(Manifold& m);
22
    void close_holes(Manifold& m);
11
}
23
}
12
#endif
24
#endif
13
 
25