add View3DInventorViewer python interface

As quarter is not wrapped by SWIG we need to expose our own python interface class.
This is a start with the most important functions to access the render and event
manager. Furthermore all extra functions available next to the swig wrapper functions
are exposed. Everything else can be added when needed.
This commit is contained in:
Stefan Tröger
2014-08-17 12:21:47 +02:00
committed by wmayer
parent cccfe3d554
commit 6b629aed56
8 changed files with 418 additions and 226 deletions

View File

@@ -409,13 +409,14 @@ Application::Application(bool GUIenabled)
}
// Python console binding
PythonDebugModule ::init_module();
PythonStdout ::init_type();
PythonStderr ::init_type();
OutputStdout ::init_type();
OutputStderr ::init_type();
PythonStdin ::init_type();
View3DInventorPy ::init_type();
PythonDebugModule ::init_module();
PythonStdout ::init_type();
PythonStderr ::init_type();
OutputStdout ::init_type();
OutputStderr ::init_type();
PythonStdin ::init_type();
View3DInventorPy ::init_type();
View3DInventorViewerPy ::init_type();
d = new ApplicationP;