]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAbstractInteractionDevice.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkAbstractInteractionDevice.java
1 // java wrapper for vtkAbstractInteractionDevice object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAbstractInteractionDevice extends vtkObject
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native void Initialize_2();
19   public void Initialize()
20     { Initialize_2(); }
21
22   private native void Start_3();
23   public void Start()
24     { Start_3(); }
25
26   private native void ProcessEvents_4();
27   public void ProcessEvents()
28     { ProcessEvents_4(); }
29
30   private native void SetRenderWidget_5(vtkRenderWidget id0);
31   public void SetRenderWidget(vtkRenderWidget id0)
32     { SetRenderWidget_5(id0); }
33
34   private native long GetRenderWidget_6();
35   public vtkRenderWidget GetRenderWidget() {
36     long temp = GetRenderWidget_6();
37
38     if (temp == 0) return null;
39     return (vtkRenderWidget)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetRenderDevice_7(vtkAbstractRenderDevice id0);
43   public void SetRenderDevice(vtkAbstractRenderDevice id0)
44     { SetRenderDevice_7(id0); }
45
46   private native long GetRenderDevice_8();
47   public vtkAbstractRenderDevice GetRenderDevice() {
48     long temp = GetRenderDevice_8();
49
50     if (temp == 0) return null;
51     return (vtkAbstractRenderDevice)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   public vtkAbstractInteractionDevice() { super(); }
55
56   public vtkAbstractInteractionDevice(long id) { super(id); }
57   public native long   VTKInit();
58
59 }