Wildmeshing Toolkit
FacesIterable.cpp
Go to the documentation of this file.
1 #include "FacesIterable.hpp"
2 
3 #include <wmtk/simplex/faces.hpp>
4 
5 namespace wmtk::simplex {
6 
7 
8 FacesIterable::FacesIterable(const Mesh& mesh, const Simplex& simplex)
9  : m_collection(faces(mesh, simplex))
10 {}
11 
12 } // namespace wmtk::simplex
FacesIterable(const Mesh &mesh, const Simplex &simplex)
SimplexCollection faces(const Mesh &mesh, const Simplex &simplex, const bool sort_and_clean)
Returns all faces of a simplex.
Definition: faces.cpp:10