py_unique_rows.cpp 488 B

123456789101112131415161718192021222324
  1. m.def("unique_rows", []
  2. (
  3. const Eigen::MatrixXd& A,
  4. Eigen::MatrixXd& C,
  5. Eigen::MatrixXi& IA,
  6. Eigen::MatrixXi& IC
  7. )
  8. {
  9. return igl::unique_rows(A,C,IA,IC);
  10. }, __doc_igl_unique,
  11. py::arg("A"), py::arg("C"), py::arg("IA"), py::arg("IC"));
  12. m.def("unique_rows", []
  13. (
  14. const Eigen::MatrixXi& A,
  15. Eigen::MatrixXi& C,
  16. Eigen::MatrixXi& IA,
  17. Eigen::MatrixXi& IC
  18. )
  19. {
  20. return igl::unique_rows(A,C,IA,IC);
  21. }, __doc_igl_unique,
  22. py::arg("A"), py::arg("C"), py::arg("IA"), py::arg("IC"));