added basic wrapper for sparse matrices, working on tutorial 203
Former-commit-id: 797a95c4fb
This commit is contained in:
@@ -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"));
|
||||
Reference in New Issue
Block a user