fixed bug in nrosy wrapper

Former-commit-id: 5e6fbb4acb
This commit is contained in:
Daniele Panozzo
2015-10-04 17:26:07 +02:00
parent 73f00b0f44
commit 44a2dc4c1e
6 changed files with 92 additions and 6 deletions
+8
View File
@@ -7,6 +7,10 @@ extern void python_export_vector(py::module &);
extern void python_export_igl(py::module &);
extern void python_export_igl_viewer(py::module &);
#ifdef PY_COMISO
extern void python_export_igl_comiso(py::module &);
#endif
PYTHON_PLUGIN(igl) {
py::init_threading();
py::module m("igl", "Python wrappers for libigl");
@@ -15,5 +19,9 @@ PYTHON_PLUGIN(igl) {
python_export_igl(m);
python_export_igl_viewer(m);
#ifdef PY_COMISO
python_export_igl_comiso(m);
#endif
return m.ptr();
}