Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
595 |
jab |
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 |
#include "close_holes.h"
|
|
|
8 |
|
|
|
9 |
#include "Manifold.h"
|
|
|
10 |
|
|
|
11 |
namespace HMesh
|
|
|
12 |
{
|
|
|
13 |
void close_holes(Manifold& m)
|
|
|
14 |
{
|
|
|
15 |
for(HalfEdgeIDIterator h = m.halfedges_begin(); h != m.halfedges_end(); ++h){
|
|
|
16 |
m.close_hole(*h);
|
|
|
17 |
}
|
|
|
18 |
}
|
|
|
19 |
}
|