forked from jvan/pyvrui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyvrui.i
More file actions
31 lines (25 loc) · 711 Bytes
/
pyvrui.i
File metadata and controls
31 lines (25 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//------------------------------------------------------------------------------
// SWIG interface file for pyvrui project.
//
//------------------------------------------------------------------------------
%module(directors="1") pyvrui
%feature("director:except") {
if ($error != NULL) {
throw Swig::DirectorMethodException();
}
}
%exception {
try { $action }
catch (Swig::DirectorException& e) { SWIG_fail; }
}
/* Enable directors for all exposed classes */
/*%feature("director");*/
/* Include global typemaps */
%include "typemaps.i"
/* Include interface modules */
%include "geometry.i"
%include "misc.i"
%include "plugins.i"
%include "vrui.i"
%include "gl.i"
%include "glmotif.i"