Wildmeshing Toolkit
Loading...
Searching...
No Matches
create_tag.cpp
Go to the documentation of this file.
1#include "create_tag.hpp"
3std::set<int64_t> create_tags(Mesh& m, const std::set<int64_t>& critical_vids)
4{
5 internal::TupleTag tuple_tag(m, critical_vids);
6 return tuple_tag.run();
7}
8
9} // namespace wmtk::multimesh::utils
TupleTag is a util helper class for tagging edges in a triangle mesh.
Definition TupleTag.hpp:17
std::set< int64_t > create_tags(Mesh &m, const std::set< int64_t > &critical_vids)
Do two passes on the edges of a triangle mesh to create vertex tags and edge tags.
Definition create_tag.cpp:3