]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkTransform2D.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkTransform2D.java
1 // java wrapper for vtkTransform2D object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkTransform2D 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 Identity_2();
19   public void Identity()
20     { Identity_2(); }
21
22   private native void Inverse_3();
23   public void Inverse()
24     { Inverse_3(); }
25
26   private native void Translate_4(double id0,double id1);
27   public void Translate(double id0,double id1)
28     { Translate_4(id0,id1); }
29
30   private native void Translate_5(double id0[]);
31   public void Translate(double id0[])
32     { Translate_5(id0); }
33
34   private native void Rotate_6(double id0);
35   public void Rotate(double id0)
36     { Rotate_6(id0); }
37
38   private native void Scale_7(double id0,double id1);
39   public void Scale(double id0,double id1)
40     { Scale_7(id0,id1); }
41
42   private native void Scale_8(double id0[]);
43   public void Scale(double id0[])
44     { Scale_8(id0); }
45
46   private native void SetMatrix_9(vtkMatrix3x3 id0);
47   public void SetMatrix(vtkMatrix3x3 id0)
48     { SetMatrix_9(id0); }
49
50   private native void SetMatrix_10(double id0[]);
51   public void SetMatrix(double id0[])
52     { SetMatrix_10(id0); }
53
54   private native long GetMatrix_11();
55   public vtkMatrix3x3 GetMatrix() {
56     long temp = GetMatrix_11();
57
58     if (temp == 0) return null;
59     return (vtkMatrix3x3)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void GetMatrix_12(vtkMatrix3x3 id0);
63   public void GetMatrix(vtkMatrix3x3 id0)
64     { GetMatrix_12(id0); }
65
66   private native void GetPosition_13(double id0[]);
67   public void GetPosition(double id0[])
68     { GetPosition_13(id0); }
69
70   private native void GetScale_14(double id0[]);
71   public void GetScale(double id0[])
72     { GetScale_14(id0); }
73
74   private native void GetInverse_15(vtkMatrix3x3 id0);
75   public void GetInverse(vtkMatrix3x3 id0)
76     { GetInverse_15(id0); }
77
78   private native void GetTranspose_16(vtkMatrix3x3 id0);
79   public void GetTranspose(vtkMatrix3x3 id0)
80     { GetTranspose_16(id0); }
81
82   private native int GetMTime_17();
83   public int GetMTime()
84     { return GetMTime_17(); }
85
86   private native void TransformPoints_18(vtkPoints2D id0,vtkPoints2D id1);
87   public void TransformPoints(vtkPoints2D id0,vtkPoints2D id1)
88     { TransformPoints_18(id0,id1); }
89
90   private native void InverseTransformPoints_19(vtkPoints2D id0,vtkPoints2D id1);
91   public void InverseTransformPoints(vtkPoints2D id0,vtkPoints2D id1)
92     { InverseTransformPoints_19(id0,id1); }
93
94   private native void MultiplyPoint_20(double id0[],double id1[]);
95   public void MultiplyPoint(double id0[],double id1[])
96     { MultiplyPoint_20(id0,id1); }
97
98   public vtkTransform2D() { super(); }
99
100   public vtkTransform2D(long id) { super(id); }
101   public native long   VTKInit();
102
103 }