py_lscm.cpp 317 B

12345678910111213
  1. m.def("lscm", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. const Eigen::MatrixXi& b,
  6. const Eigen::MatrixXd& bc,
  7. Eigen::MatrixXd& V_uv
  8. )
  9. {
  10. assert_is_VectorX("b",b);
  11. return igl::lscm(V,F,b,bc,V_uv);
  12. }, __doc_igl_lscm,
  13. py::arg("V"), py::arg("F"), py::arg("b"), py::arg("bc"), py::arg("V_uv"));