add wrapper for readPLY

This commit is contained in:
Hasnain Vohra
2017-07-17 15:40:36 -04:00
parent 536ee69aed
commit 46385dc442
5 changed files with 26 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
m.def("readPLY", []
(
const std::string str,
Eigen::MatrixXd& V,
Eigen::MatrixXi& F,
Eigen::MatrixXd& N,
Eigen::MatrixXd& UV
)
{
return igl::readPLY(str,V,F,N,UV);
}, __doc_igl_readPLY,
py::arg("str"), py::arg("V"), py::arg("F"), py::arg("N"), py::arg("UV"));