py_readPLY.cpp 272 B

123456789101112
  1. m.def("readPLY", []
  2. (
  3. const std::string str,
  4. Eigen::MatrixXd& V,
  5. Eigen::MatrixXi& F,
  6. Eigen::MatrixXd& N,
  7. Eigen::MatrixXd& UV
  8. )
  9. {
  10. return igl::readPLY(str,V,F,N,UV);
  11. }, __doc_igl_readPLY,
  12. py::arg("str"), py::arg("V"), py::arg("F"), py::arg("N"), py::arg("UV"));