Wildmeshing Toolkit
Loading...
Searching...
No Matches
UpdateEdgeOperationMultiMeshMapFunctor.hpp
Go to the documentation of this file.
1#pragma once
2#include <Eigen/Core>
3#include <memory>
4#include <vector>
5
6namespace wmtk {
7class Mesh;
8class PointMesh;
9class EdgeMesh;
10class TriMesh;
11class TetMesh;
12class Tuple;
13namespace simplex {
14class Simplex;
15}
16namespace attribute {
17template <typename T>
18class CachingAttribute;
19template <typename T, typename MeshType, typename AttributeType, int Dim>
20class Accessor;
21} // namespace attribute
22
23namespace operations {
24class EdgeOperationData;
25namespace edge_mesh {
26class EdgeOperationData;
27}
28namespace tri_mesh {
29class EdgeOperationData;
30}
31namespace tet_mesh {
32class EdgeOperationData;
33}
34} // namespace operations
35
36namespace operations::utils {
37
39{
40public:
41 // edge -> edge
42 [[noreturn]] void operator()(
43 EdgeMesh&,
44 const simplex::Simplex&,
45 const edge_mesh::EdgeOperationData& parent_tmoe,
46 EdgeMesh&,
47 const simplex::Simplex&,
48 const edge_mesh::EdgeOperationData&) const;
49
50 // tri -> edge
51 void operator()(
52 TriMesh&,
53 const simplex::Simplex&,
55 EdgeMesh&,
56 const simplex::Simplex&,
57 const edge_mesh::EdgeOperationData&) const;
58 // tri -> tri
59 void operator()(
60 TriMesh&,
61 const simplex::Simplex&,
63 TriMesh&,
64 const simplex::Simplex&,
65 const tri_mesh::EdgeOperationData&) const;
66
67 // tet -> edge
68 void operator()(
69 TetMesh&,
70 const simplex::Simplex&,
72 EdgeMesh&,
73 const simplex::Simplex&,
74 const edge_mesh::EdgeOperationData&) const;
75 // tet -> tri
76 void operator()(
77 TetMesh&,
78 const simplex::Simplex&,
80 TriMesh&,
81 const simplex::Simplex&,
82 const tri_mesh::EdgeOperationData&) const;
83 // tet -> tet
84 void operator()(
85 TetMesh&,
86 const simplex::Simplex&,
88 TetMesh&,
89 const simplex::Simplex&,
90 const tet_mesh::EdgeOperationData&) const;
91
92 // edge
94
95 // tri
97
98 // tet
100
101private:
102 /*
103 template <typename T>
104 void update_maps(MeshType&, const simplex::Simplex&, const EdgeOperationData&);
105 */
106
107private:
108 int64_t parent_global_cid(
109 const attribute::
110 Accessor<int64_t, Mesh, attribute::CachingAttribute<int64_t>, Eigen::Dynamic>&
111 parent_to_child,
112 int64_t parent_gid) const;
113 int64_t child_global_cid(
114 const attribute::
115 Accessor<int64_t, Mesh, attribute::CachingAttribute<int64_t>, Eigen::Dynamic>&
116 parent_to_child,
117 int64_t parent_gid) const;
119 Mesh& m,
120 const std::vector<std::vector<std::tuple<int64_t, std::vector<Tuple>>>>&
121 simplices_to_update,
122 const std::vector<std::tuple<int64_t, std::array<int64_t, 2>>>& split_cell_maps = {}) const;
124
125 // for tet
126 int64_t parent_local_fid(
127 const attribute::
128 Accessor<int64_t, Mesh, attribute::CachingAttribute<int64_t>, Eigen::Dynamic>&
129 parent_to_child,
130 int64_t parent_gid) const;
131
133};
134} // namespace operations::utils
135} // namespace wmtk
void update_all_hashes(Mesh &m, const std::vector< std::vector< std::tuple< int64_t, std::vector< Tuple > > > > &simplices_to_update, const std::vector< std::tuple< int64_t, std::array< int64_t, 2 > > > &split_cell_maps={}) const
int64_t child_global_cid(const attribute::Accessor< int64_t, Mesh, attribute::CachingAttribute< int64_t >, Eigen::Dynamic > &parent_to_child, int64_t parent_gid) const
int64_t parent_local_fid(const attribute::Accessor< int64_t, Mesh, attribute::CachingAttribute< int64_t >, Eigen::Dynamic > &parent_to_child, int64_t parent_gid) const
void update_ear_replacement(TriMesh &m, const tri_mesh::EdgeOperationData &fmoe) const
int64_t parent_global_cid(const attribute::Accessor< int64_t, Mesh, attribute::CachingAttribute< int64_t >, Eigen::Dynamic > &parent_to_child, int64_t parent_gid) const
void operator()(EdgeMesh &, const simplex::Simplex &, const edge_mesh::EdgeOperationData &parent_tmoe, EdgeMesh &, const simplex::Simplex &, const edge_mesh::EdgeOperationData &) const