Subversion Repositories gelsvn

Rev

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
/**
8
 @file 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
 */
13
 
14
#ifndef __HMESH_CLOSE_HOLES_H__
15
#define __HMESH_CLOSE_HOLES_H__
16
 
17
namespace HMesh
18
{
19
    class Manifold;
20
    /** \brief This function replaces holes by faces. 
21
    It is really a simple function that just finds all loops of edges next to missing faces. */
22
    void close_holes(Manifold& m);
23
}
24
#endif