Rev 332 | Blame | Last modification | View Log | RSS feed
/* ----------------------------------------------------------------------- *
* This file is part of GEL, http://www.imm.dtu.dk/GEL
* Copyright (C) the authors and DTU Informatics
* For license and list of authors, see ../../doc/intro.pdf
* ----------------------------------------------------------------------- */
#include "close_holes.h"
#include "Manifold.h"
namespace HMesh
{
void close_holes(Manifold& m)
{
for(HalfEdgeIDIterator h = m.halfedges_begin(); h != m.halfedges_end(); ++h){
m.close_hole(*h);
}
}
}
Generated by GNU Enscript 1.6.6.