#include #include #include "bindings.h" #include "stroid/refinement/uniform.h" namespace py = pybind11; void register_refinement_bindings(pybind11::module_ &m) { m.def("UniformRefinement", &stroid::refinement::UniformRefinement, py::arg("mesh"), py::arg("levels"), "Perform uniform refinement without breaking the higher order structure"); }