py_igl_cgal.cpp 633 B

12345678910111213141516171819202122
  1. //#include <Eigen/Geometry>
  2. //#include <Eigen/Dense>
  3. //#include <Eigen/Sparse>
  4. #include "../../python_shared.h"
  5. #include <igl/copyleft/cgal/mesh_boolean.h>
  6. #include <igl/copyleft/cgal/remesh_self_intersections.h>
  7. #include <igl/copyleft/cgal/RemeshSelfIntersectionsParam.h>
  8. void python_export_igl_cgal(py::module &me) {
  9. py::module m = me.def_submodule(
  10. "cgal", "Wrappers for libigl functions that use cgal");
  11. #include "../../py_igl/copyleft/cgal/py_mesh_boolean.cpp"
  12. #include "../../py_igl/copyleft/cgal/py_remesh_self_intersections.cpp"
  13. #include "../../py_igl/copyleft/cgal/py_RemeshSelfIntersectionsParam.cpp"
  14. }