Wildmeshing Toolkit
boundary.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "SimplexCollection.hpp"
4 
5 namespace wmtk::simplex {
23 SimplexCollection
24 boundary(const Mesh& mesh, const Simplex& simplex, const bool sort_and_clean = true);
25 
26 std::vector<Tuple> boundary_tuples(const Mesh& mesh, const Simplex& simplex);
27 std::vector<Tuple> boundary_tuples(const Mesh& mesh, const Tuple& t, PrimitiveType pt);
28 } // namespace wmtk::simplex
std::vector< Tuple > boundary_tuples(const Mesh &m, const Tuple &t, PrimitiveType pt)
Definition: boundary.cpp:7
SimplexCollection boundary(const Mesh &mesh, const Simplex &simplex, const bool sort_and_clean)
Returns all boundary simplices of a simplex.
Definition: boundary.cpp:44