py_adjacency_list.cpp 198 B

123
  1. m.def("adjacency_list", [](const Eigen::MatrixXi& F, std::vector<std::vector<int>>& A, bool sorted) {
  2. igl::adjacency_list(F, A, sorted);
  3. }, py::arg("F"), py::arg("A"), py::arg("sorted")=false);