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