11 lines
140 B
C++
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"));
|
|
|