Wildmeshing Toolkit
Loading...
Searching...
No Matches
init_from_delaunay.hpp
1#pragma once
2
3#include <wmtk/Types.hpp>
4
5namespace wmtk::components::triwild {
6
18void init_from_delaunay_box_mesh(
19 const MatrixXd& V,
20 const MatrixXi& E,
21 MatrixXd& V_out,
22 MatrixXi& F_out,
23 MatrixXi& E_out);
24
25void init_from_paths(
26 const std::vector<std::string>& input_paths,
27 MatrixXd& V_out,
28 MatrixXi& F_out,
29 MatrixXi& E_out);
30
31} // namespace wmtk::components::triwild