py_cotmatrix.cpp 216 B

12345678910
  1. m.def("cotmatrix", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. Eigen::SparseMatrix<double>& L
  6. )
  7. {
  8. return igl::cotmatrix(V,F,L);
  9. }, __doc_igl_cotmatrix,
  10. py::arg("V"), py::arg("F"), py::arg("L"));