Wildmeshing Toolkit
link.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "SimplexCollection.hpp"
4 
5 namespace wmtk::simplex {
6 SimplexCollection
7 link(const Mesh& mesh, const simplex::Simplex& simplex, const bool sort_and_clean = true);
8 
9 SimplexCollection
10 link(const TriMesh& mesh, const simplex::Simplex& simplex, const bool sort_and_clean = true);
11 
12 SimplexCollection
13 link(const TetMesh& mesh, const simplex::Simplex& simplex, const bool sort_and_clean = true);
14 
15 SimplexCollection
16 link_slow(const Mesh& mesh, const simplex::Simplex& simplex, const bool sort_and_clean = true);
17 } // namespace wmtk::simplex
SimplexCollection link(const Mesh &mesh, const simplex::Simplex &simplex, const bool sort_and_clean)
Definition: link.cpp:84
SimplexCollection link_slow(const Mesh &mesh, const simplex::Simplex &simplex, const bool sort_and_clean)
Definition: link.cpp:185