Restructuring Python bindings, moved submodules and dependencies to own folders, added dependency checking for some tutorials, minor refactorings
Former-commit-id: 2214125878
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
//#include <Eigen/Geometry>
|
||||
//#include <Eigen/Dense>
|
||||
//#include <Eigen/Sparse>
|
||||
|
||||
|
||||
#include "../python_shared.h"
|
||||
|
||||
#include <igl/embree/ambient_occlusion.h>
|
||||
|
||||
|
||||
void python_export_igl_embree(py::module &me) {
|
||||
|
||||
py::module m = me.def_submodule(
|
||||
"embree", "Wrappers for libigl functions that use embree");
|
||||
|
||||
#include "../py_igl/embree/py_ambient_occlusion.cpp"
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user