started to support the viewer. Working on adding callbacks management

This commit is contained in:
Daniele Panozzo
2015-08-27 23:17:18 +02:00
parent 27330ae3eb
commit f24ea0f882
6 changed files with 109 additions and 17 deletions
+2
View File
@@ -5,6 +5,7 @@
extern void python_export_vector(py::module &);
extern void python_export_igl(py::module &);
extern void python_export_igl_viewer(py::module &);
PYTHON_PLUGIN(igl) {
py::init_threading();
@@ -12,6 +13,7 @@ PYTHON_PLUGIN(igl) {
python_export_vector(m);
python_export_igl(m);
python_export_igl_viewer(m);
return m.ptr();
}