Wildmeshing Toolkit
Loading...
Searching...
No Matches
read_triangle_mesh.hpp
1#pragma once
2
3#include <wmtk/Types.hpp>
4
5namespace wmtk::io {
6
23void read_triangle_mesh(
24 const std::string& path,
25 Eigen::MatrixXd& V,
26 Eigen::MatrixXi& F,
27 double tol_rel = 2e-4,
28 double tol_abs = -1);
29
30void read_triangle_mesh(
31 const std::vector<std::string>& paths,
32 Eigen::MatrixXd& V,
33 Eigen::MatrixXi& F,
34 double tol_rel = 2e-4,
35 double tol_abs = -1);
36
37} // namespace wmtk::io