py_edge_topology.cpp 305 B

12345678910111213
  1. m.def("edge_topology", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. Eigen::MatrixXi& EV,
  6. Eigen::MatrixXi& FE,
  7. Eigen::MatrixXi& EF
  8. )
  9. {
  10. return igl::edge_topology(V, F, EV, FE, EF);
  11. }, __doc_igl_edge_lengths,
  12. py::arg("V"), py::arg("F"), py::arg("EV"), py::arg("FE"), py::arg("EF"));