Wildmeshing Toolkit
Loading...
Searching...
No Matches
faces.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace wmtk::simplex {
23SimplexCollection faces(const Mesh& mesh, const Simplex& simplex, const bool sort_and_clean = true);
24
25void 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