py_igl_embree.cpp 472 B

1234567891011121314151617181920
  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. void python_export_igl_embree(py::module &me) {
  8. py::module m = me.def_submodule(
  9. "embree", "Wrappers for libigl functions that use embree");
  10. #include "../py_igl/embree/py_ambient_occlusion.cpp"
  11. #include "../py_igl/embree/py_reorient_facets_raycast.cpp"
  12. }