5namespace wmtk::utils::tet_element_topology {
12 static constexpr std::array<std::array<int, 2>, 6> local_edges = {
13 {{{0, 1}}, {{1, 2}}, {{0, 2}}, {{0, 3}}, {{1, 3}}, {{2, 3}}}};
15 static constexpr std::array<int, 4> map_vertex2edge = {{0, 0, 1, 3}};
16 static constexpr std::array<int, 4> map_vertex2oppo_face = {{3, 1, 2, 0}};
17 static constexpr std::array<int, 6> map_edge2face = {{0, 0, 0, 1, 2, 1}};
18 static constexpr std::array<std::array<int, 3>, 4> local_faces = {
19 {{{0, 1, 2}}, {{0, 2, 3}}, {{0, 1, 3}}, {{1, 2, 3}}}};
20 static constexpr std::array<std::array<int, 3>, 4> local_edges_in_a_face = {
21 {{{0, 1, 2}}, {{2, 5, 3}}, {{3, 4, 0}}, {{5, 1, 4}}}};