Wildmeshing Toolkit
Loading...
Searching...
No Matches
read_edge_mesh.hpp
1#pragma once
2
3#include <wmtk/Types.hpp>
4
5namespace wmtk::io {
6
24void read_edge_mesh(
25 const std::string& path,
26 MatrixXd& V,
27 MatrixXi& E,
28 double tol_rel = -1,
29 double tol_abs = -1);
30
31} // namespace wmtk::io