]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkContext3D.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkContext3D.java
1 // java wrapper for vtkContext3D object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkContext3D 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 boolean Begin_2(vtkContextDevice3D id0);
19   public boolean Begin(vtkContextDevice3D id0)
20     { return Begin_2(id0); }
21
22   private native long GetDevice_3();
23   public vtkContextDevice3D GetDevice() {
24     long temp = GetDevice_3();
25
26     if (temp == 0) return null;
27     return (vtkContextDevice3D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native boolean End_4();
31   public boolean End()
32     { return End_4(); }
33
34   private native void ApplyPen_5(vtkPen id0);
35   public void ApplyPen(vtkPen id0)
36     { ApplyPen_5(id0); }
37
38   private native void ApplyBrush_6(vtkBrush id0);
39   public void ApplyBrush(vtkBrush id0)
40     { ApplyBrush_6(id0); }
41
42   private native void SetTransform_7(vtkTransform id0);
43   public void SetTransform(vtkTransform id0)
44     { SetTransform_7(id0); }
45
46   private native long GetTransform_8();
47   public vtkTransform GetTransform() {
48     long temp = GetTransform_8();
49
50     if (temp == 0) return null;
51     return (vtkTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void AppendTransform_9(vtkTransform id0);
55   public void AppendTransform(vtkTransform id0)
56     { AppendTransform_9(id0); }
57
58   private native void PushMatrix_10();
59   public void PushMatrix()
60     { PushMatrix_10(); }
61
62   private native void PopMatrix_11();
63   public void PopMatrix()
64     { PopMatrix_11(); }
65
66   private native void DisableClippingPlane_12(int id0);
67   public void DisableClippingPlane(int id0)
68     { DisableClippingPlane_12(id0); }
69
70   public vtkContext3D() { super(); }
71
72   public vtkContext3D(long id) { super(id); }
73   public native long   VTKInit();
74
75 }