added basic wrapper for sparse matrices, working on tutorial 203

Former-commit-id: 797a95c4fb
This commit is contained in:
Daniele Panozzo
2015-08-22 16:38:56 +02:00
parent bf08e18836
commit b081561d44
7 changed files with 296 additions and 60 deletions
+10
View File
@@ -0,0 +1,10 @@
m.def("cotmatrix", []
(
const Eigen::MatrixXd& V,
const Eigen::MatrixXi& F,
Eigen::SparseMatrix<double>& L
)
{
return igl::cotmatrix(V,F,L);
}, __doc_igl_cotmatrix,
py::arg("V"), py::arg("F"), py::arg("L"));