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/triangle/triangulate.h>
|
||||
|
||||
|
||||
void python_export_igl_triangle(py::module &me) {
|
||||
|
||||
py::module m = me.def_submodule(
|
||||
"triangle", "Wrappers for libigl functions that use triangle");
|
||||
|
||||
#include "../py_igl/triangle/py_triangulate.cpp"
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user