]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkTransformInterpolator.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkTransformInterpolator.java
1 // java wrapper for vtkTransformInterpolator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkTransformInterpolator 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 int GetNumberOfTransforms_2();
19   public int GetNumberOfTransforms()
20     { return GetNumberOfTransforms_2(); }
21
22   private native double GetMinimumT_3();
23   public double GetMinimumT()
24     { return GetMinimumT_3(); }
25
26   private native double GetMaximumT_4();
27   public double GetMaximumT()
28     { return GetMaximumT_4(); }
29
30   private native void Initialize_5();
31   public void Initialize()
32     { Initialize_5(); }
33
34   private native void AddTransform_6(double id0,vtkTransform id1);
35   public void AddTransform(double id0,vtkTransform id1)
36     { AddTransform_6(id0,id1); }
37
38   private native void AddTransform_7(double id0,vtkMatrix4x4 id1);
39   public void AddTransform(double id0,vtkMatrix4x4 id1)
40     { AddTransform_7(id0,id1); }
41
42   private native void AddTransform_8(double id0,vtkProp3D id1);
43   public void AddTransform(double id0,vtkProp3D id1)
44     { AddTransform_8(id0,id1); }
45
46   private native void RemoveTransform_9(double id0);
47   public void RemoveTransform(double id0)
48     { RemoveTransform_9(id0); }
49
50   private native void InterpolateTransform_10(double id0,vtkTransform id1);
51   public void InterpolateTransform(double id0,vtkTransform id1)
52     { InterpolateTransform_10(id0,id1); }
53
54   private native void SetInterpolationType_11(int id0);
55   public void SetInterpolationType(int id0)
56     { SetInterpolationType_11(id0); }
57
58   private native int GetInterpolationTypeMinValue_12();
59   public int GetInterpolationTypeMinValue()
60     { return GetInterpolationTypeMinValue_12(); }
61
62   private native int GetInterpolationTypeMaxValue_13();
63   public int GetInterpolationTypeMaxValue()
64     { return GetInterpolationTypeMaxValue_13(); }
65
66   private native int GetInterpolationType_14();
67   public int GetInterpolationType()
68     { return GetInterpolationType_14(); }
69
70   private native void SetInterpolationTypeToLinear_15();
71   public void SetInterpolationTypeToLinear()
72     { SetInterpolationTypeToLinear_15(); }
73
74   private native void SetInterpolationTypeToSpline_16();
75   public void SetInterpolationTypeToSpline()
76     { SetInterpolationTypeToSpline_16(); }
77
78   private native void SetInterpolationTypeToManual_17();
79   public void SetInterpolationTypeToManual()
80     { SetInterpolationTypeToManual_17(); }
81
82   private native void SetPositionInterpolator_18(vtkTupleInterpolator id0);
83   public void SetPositionInterpolator(vtkTupleInterpolator id0)
84     { SetPositionInterpolator_18(id0); }
85
86   private native long GetPositionInterpolator_19();
87   public vtkTupleInterpolator GetPositionInterpolator() {
88     long temp = GetPositionInterpolator_19();
89
90     if (temp == 0) return null;
91     return (vtkTupleInterpolator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
92 }
93
94   private native void SetScaleInterpolator_20(vtkTupleInterpolator id0);
95   public void SetScaleInterpolator(vtkTupleInterpolator id0)
96     { SetScaleInterpolator_20(id0); }
97
98   private native long GetScaleInterpolator_21();
99   public vtkTupleInterpolator GetScaleInterpolator() {
100     long temp = GetScaleInterpolator_21();
101
102     if (temp == 0) return null;
103     return (vtkTupleInterpolator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
104 }
105
106   private native void SetRotationInterpolator_22(vtkQuaternionInterpolator id0);
107   public void SetRotationInterpolator(vtkQuaternionInterpolator id0)
108     { SetRotationInterpolator_22(id0); }
109
110   private native long GetRotationInterpolator_23();
111   public vtkQuaternionInterpolator GetRotationInterpolator() {
112     long temp = GetRotationInterpolator_23();
113
114     if (temp == 0) return null;
115     return (vtkQuaternionInterpolator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
116 }
117
118   private native int GetMTime_24();
119   public int GetMTime()
120     { return GetMTime_24(); }
121
122   public vtkTransformInterpolator() { super(); }
123
124   public vtkTransformInterpolator(long id) { super(id); }
125   public native long   VTKInit();
126
127 }