Wildmeshing Toolkit
Loading...
Searching...
No Matches
triangle_insertion.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <tuple>
5#include <memory>
6#include <vector>
7
8namespace wmtk {
9 class Mesh;
10 class TriMesh;
11 class TetMesh;
12 namespace attribute {
13 class MeshAttributeHandle;
14 }
15}
16
18
20{
21public:
22 std::shared_ptr<Mesh> surface_mesh = nullptr;
23 std::shared_ptr<Mesh> open_boundary_mesh = nullptr;
24 std::shared_ptr<Mesh> nonmanifold_edge_mesh = nullptr;
25 std::shared_ptr<Mesh> bbox_mesh = nullptr;
26};
27
28std::tuple<std::shared_ptr<wmtk::TetMesh>, ChildMeshes> triangle_insertion(
29 const TetMesh& bg_mesh,
30 const std::string& bg_position,
31 const TriMesh& mesh_in,
32 const std::string& in_position,
33 std::vector<attribute::MeshAttributeHandle>& pass_through,
34 bool round = true,
35 bool track_submeshes = true,
36 bool make_child_free = false);
37
38} // namespace wmtk::components::triangle_insertion
std::tuple< std::shared_ptr< wmtk::TetMesh >, ChildMeshes > triangle_insertion(const TetMesh &bg_mesh, const std::string &bg_position, const TriMesh &mesh_in, const std::string &in_position, std::vector< attribute::MeshAttributeHandle > &pass_through, bool round, bool track_submeshes, bool make_child_free)