Added tutorial 705

Former-commit-id: ef2d804f84
This commit is contained in:
Sebastian Koch
2016-07-06 15:51:04 +02:00
parent 5416e09508
commit 5e56eb4f81
10 changed files with 266 additions and 1 deletions
@@ -0,0 +1,18 @@
//#include <Eigen/Geometry>
//#include <Eigen/Dense>
//#include <Eigen/Sparse>
#include "../../python_shared.h"
#include <igl/copyleft/marching_cubes.h>
void python_export_igl_copyleft(py::module &me) {
py::module m = me.def_submodule(
"copyleft", "Wrappers for libigl functions that are copyleft");
#include "../../py_igl/copyleft/py_marching_cubes.cpp"
}