working on 204, we need to figure out how to deal with the inconsistency between vectors in numpy and eigen before continuing

This commit is contained in:
Daniele Panozzo
2015-08-24 15:05:45 +02:00
parent 34503e8b7e
commit 27330ae3eb
7 changed files with 127 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
m.def("readDMAT", []
(
const std::string str,
Eigen::MatrixXd& W
)
{
return igl::readDMAT(str,W);
}, __doc_igl_readDMAT,
py::arg("str"), py::arg("W"));