py_edge_lengths.cpp 216 B

1234567891011
  1. m.def("edge_lengths", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXi& F,
  5. Eigen::MatrixXd& L
  6. )
  7. {
  8. return igl::edge_lengths(V, F, L);
  9. }, __doc_igl_edge_lengths,
  10. py::arg("V"), py::arg("F"), py::arg("L"));