Linked SmartTagger docu into main docu pages

This commit is contained in:
Jan Möbius
2018-06-19 15:12:41 +02:00
parent 3e0849fb72
commit 9a81b465e3
2 changed files with 26 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
\li \subpage subdivider_docu \li \subpage subdivider_docu
\li \subpage vdpm_docu \li \subpage vdpm_docu
\li \subpage smoother_docu \li \subpage smoother_docu
\li \subpage smarttagger_docu
\li Miscellaneous \li Miscellaneous
OpenMesh::StripifierT OpenMesh::StripifierT

View File

@@ -80,6 +80,31 @@ template< class Mesh> class SmartTaggerHT;
//== CLASS DEFINITION ========================================================= //== CLASS DEFINITION =========================================================
/** \page smarttagger_docu Smart Tagger
The smart tagger can be used to tag vertices/halfedges/edges/faces on the mesh. It provides
an O(1) reset function to untag all primitives at once.
Usage:
\code
SmartTaggerVT< MeshType > tagger(mesh);
// Reset tagged flag on all vertices
tagger.untag_all();
// Check if something is tagged
bool tag = tagger.is_tagged(vh);
// Set tagged:
tagger.set_tag(vh);
\endcode
For details see OpenMesh::SmartTaggerT
*/
/** \brief Smart Tagger /** \brief Smart Tagger
* *
* A tagger class to be used on OpenMesh. It provides an O(1) reset function for the property. * A tagger class to be used on OpenMesh. It provides an O(1) reset function for the property.