Wildmeshing Toolkit
Loading...
Searching...
No Matches
read_image_msh.hpp
1#pragma once
2
3#include <map>
4#include <string>
5#include <wmtk/Types.hpp>
6
7namespace wmtk::components::manifold_extraction {
8
10{
11 MatrixXd V_input;
12 MatrixXi T_input;
13 MatrixSi T_input_tags;
14 std::vector<std::string> tag_names;
15
16 // note: not actually used, just for spitting back to output
17 MatrixXd V_envelope;
18 MatrixXi F_envelope;
19};
20
25InputData read_image_msh(const std::string& path);
26
27} // namespace wmtk::components::manifold_extraction
Definition read_image_msh.hpp:10