py_igl_cgal.cpp 367 B

123456789101112131415161718
  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. void python_export_igl_cgal(py::module &me) {
  7. py::module m = me.def_submodule(
  8. "cgal", "Wrappers for libigl functions that use cgal");
  9. #include "../../py_igl/copyleft/cgal/py_mesh_boolean.cpp"
  10. }