12 lines
216 B
C++
12 lines
216 B
C++
m.def("edge_lengths", []
|
|
(
|
|
const Eigen::MatrixXd& V,
|
|
const Eigen::MatrixXi& F,
|
|
Eigen::MatrixXd& L
|
|
)
|
|
{
|
|
return igl::edge_lengths(V, F, L);
|
|
}, __doc_igl_edge_lengths,
|
|
py::arg("V"), py::arg("F"), py::arg("L"));
|
|
|