Files
igl/python/py_igl/py_randperm.cpp
T
2016-07-06 20:38:33 +02:00

11 lines
140 B
C++

m.def("randperm", []
(
int n,
Eigen::MatrixXi& I
)
{
return igl::randperm(n, I);
}, __doc_igl_randperm,
py::arg("n"), py::arg("I"));