py_barycentric_to_global.cpp 253 B

123456789101112
  1. m.def("barycentric_to_global", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. const Eigen::MatrixXd& bc
  6. )
  7. {
  8. return igl::barycentric_to_global(V, F, bc);
  9. }, __doc_igl_barycentric_to_global,
  10. py::arg("V"), py::arg("F"), py::arg("bc"));