Added tutorial 705

This commit is contained in:
Sebastian Koch
2016-07-06 15:51:04 +02:00
parent 64289b0050
commit ef2d804f84
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"
}