Wildmeshing Toolkit
Loading...
Searching...
No Matches
read_image_msh.hpp
1#pragma once
2
3#include <nlohmann/json.hpp>
4#include <string>
5#include <wmtk/Types.hpp>
6
7namespace wmtk::components::image_simulation {
8
10{
11 MatrixXd V_input;
12 MatrixXr V_input_r;
13 MatrixXi T_input;
14 MatrixSi T_input_tag;
15 std::vector<std::string> tag_names;
16
17 MatrixXd V_envelope;
18 MatrixXi F_envelope;
19};
20
24InputData read_image_msh(const std::string& path);
25
31InputData read_mesh(
32 const std::vector<std::string>& input_paths,
33 const std::string& output_filename,
34 const nlohmann::json& json_params);
35
36} // namespace wmtk::components::image_simulation
Definition read_image_msh.hpp:10