13 lines
236 B
C++
13 lines
236 B
C++
#ifndef HOLE_FILLING_H
|
|
#define HOLE_FILLING_H
|
|
|
|
#include "my_mesh.h"
|
|
#include <vector>
|
|
|
|
|
|
void fillHoleDumb(MyMesh &mesh, std::vector<HalfedgeHandle> &hole);
|
|
void fillHolesDumb(MyMesh &mesh);
|
|
void fillHolesImplicit(MyMesh &mesh);
|
|
|
|
|
|
#endif |