Wildmeshing Toolkit
Loading...
Searching...
No Matches
src
wmtk
io
read_triangle_mesh.hpp
1
#pragma once
2
3
#include <wmtk/Types.hpp>
4
5
namespace
wmtk::io {
6
23
void
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
30
void
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
Generated by
1.9.8