Added tutorial 707

This commit is contained in:
Sebastian Koch
2016-07-06 22:20:41 +02:00
parent 3acc7106d4
commit 3a57699280
10 changed files with 182 additions and 0 deletions
+8
View File
@@ -34,6 +34,10 @@ extern void python_export_igl_cgal(py::module &);
extern void python_export_igl_png(py::module &);
#endif
#ifdef PY_COPYLEFT
extern void python_export_igl_copyleft(py::module &);
#endif
PYBIND11_PLUGIN(pyigl) {
py::module m("pyigl", R"pyigldoc(
Python wrappers for libigl
@@ -82,5 +86,9 @@ PYBIND11_PLUGIN(pyigl) {
python_export_igl_png(m);
#endif
#ifdef PY_COPYLEFT
python_export_igl_copyleft(m);
#endif
return m.ptr();
}