py_avg_edge_length.cpp 184 B

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