py_igl_embree.cpp 579 B

12345678910111213141516171819202122
  1. //#include <Eigen/Geometry>
  2. //#include <Eigen/Dense>
  3. //#include <Eigen/Sparse>
  4. #include "../python_shared.h"
  5. #include <igl/embree/ambient_occlusion.h>
  6. #include <igl/embree/reorient_facets_raycast.h>
  7. #include <igl/embree/line_mesh_intersection.h>
  8. void python_export_igl_embree(py::module &me) {
  9. py::module m = me.def_submodule(
  10. "embree", "Wrappers for libigl functions that use embree");
  11. #include "../py_igl/embree/py_ambient_occlusion.cpp"
  12. #include "../py_igl/embree/py_reorient_facets_raycast.cpp"
  13. #include "../py_igl/embree/py_line_mesh_intersection.cpp"
  14. }