py_planarize_quad_mesh.cpp 364 B

1234567891011121314
  1. m.def("planarize_quad_mesh", []
  2. (
  3. const Eigen::MatrixXd& Vin,
  4. const Eigen::MatrixXi& F,
  5. const int maxIter,
  6. const double & threshold,
  7. Eigen::MatrixXd& Vout
  8. )
  9. {
  10. return igl::planarize_quad_mesh(Vin, F, maxIter, threshold, Vout);
  11. }, __doc_igl_planarize_quad_mesh,
  12. py::arg("Vin"), py::arg("F"), py::arg("maxIter"), py::arg("threshold"), py::arg("Vout"));