py_local_basis.cpp 295 B

123456789101112
  1. m.def("local_basis", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. Eigen::MatrixXd& B1,
  6. Eigen::MatrixXd& B2,
  7. Eigen::MatrixXd& B3
  8. )
  9. {
  10. return igl::local_basis(V,F,B1,B2,B3);
  11. }, __doc_igl_local_basis,
  12. py::arg("V"), py::arg("F"), py::arg("B1"), py::arg("B2"), py::arg("B3"));