Wildmeshing Toolkit
faces.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "SimplexCollection.hpp"
4 
5 namespace wmtk::simplex {
23 SimplexCollection faces(const Mesh& mesh, const Simplex& simplex, const bool sort_and_clean = true);
24 
25 void faces(
26  SimplexCollection& simplex_collection,
27  const Simplex& simplex,
28  const bool sort_and_clean = true);
29 
30 } // namespace wmtk::simplex
SimplexCollection faces(const Mesh &mesh, const Simplex &simplex, const bool sort_and_clean)
Returns all faces of a simplex.
Definition: faces.cpp:10