Files
igl/python/py_igl/py_avg_edge_length.cpp
T

10 lines
184 B
C++

m.def("avg_edge_length", []
(
const Eigen::MatrixXd& V,
const Eigen::MatrixXi& F
)
{
return igl::avg_edge_length(V,F);
}, __doc_igl_avg_edge_length,
py::arg("V"), py::arg("F"));