Added some basic holefiller doc

This commit is contained in:
Jan Möbius
2024-02-21 10:53:01 +01:00
parent 7820ccd258
commit fa465cb05e
5 changed files with 41 additions and 19 deletions

21
Doc/holefiller.docu Normal file
View File

@@ -0,0 +1,21 @@
//-----------------------------------------------------------------------------
/** \page holefiller_docu Mesh Hole Filler
\section HoleFillerAlgo The holefilling algorithm
The holefiller (OpenMesh::HoleFiller::HoleFillerT) provides a
hole filling algorith based on the Filling Holes in Meshes paper
by Liepa in 2003.
\code
// Initialize holefiller
OpenMesh::HoleFiller::HoleFillerT<Mesh> filler(mesh_);
// Execute the algorithm and fill all holes
filler.fill_all_holes();
\endcode
*/