Added tutorial 609_Boolean and CGAL python module + functions

This commit is contained in:
Sebastian Koch
2016-06-17 17:25:27 +02:00
parent 76abdffac1
commit 7b6b91bd7a
8 changed files with 312 additions and 2 deletions
+8
View File
@@ -26,6 +26,10 @@ extern void python_export_igl_embree(py::module &);
extern void python_export_igl_triangle(py::module &);
#endif
#ifdef PY_CGAL
extern void python_export_igl_cgal(py::module &);
#endif
PYBIND11_PLUGIN(pyigl) {
py::module m("pyigl", R"pyigldoc(
Python wrappers for libigl
@@ -66,5 +70,9 @@ PYBIND11_PLUGIN(pyigl) {
python_export_igl_triangle(m);
#endif
#ifdef PY_CGAL
python_export_igl_cgal(m);
#endif
return m.ptr();
}