]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGridTransform.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkGridTransform.java
1 // java wrapper for vtkGridTransform object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGridTransform extends vtkWarpTransform
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 SetDisplacementGridConnection_2(vtkAlgorithmOutput id0);
19   public void SetDisplacementGridConnection(vtkAlgorithmOutput id0)
20     { SetDisplacementGridConnection_2(id0); }
21
22   private native void SetDisplacementGridData_3(vtkImageData id0);
23   public void SetDisplacementGridData(vtkImageData id0)
24     { SetDisplacementGridData_3(id0); }
25
26   private native long GetDisplacementGrid_4();
27   public vtkImageData GetDisplacementGrid() {
28     long temp = GetDisplacementGrid_4();
29
30     if (temp == 0) return null;
31     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetDisplacementScale_5(double id0);
35   public void SetDisplacementScale(double id0)
36     { SetDisplacementScale_5(id0); }
37
38   private native double GetDisplacementScale_6();
39   public double GetDisplacementScale()
40     { return GetDisplacementScale_6(); }
41
42   private native void SetDisplacementShift_7(double id0);
43   public void SetDisplacementShift(double id0)
44     { SetDisplacementShift_7(id0); }
45
46   private native double GetDisplacementShift_8();
47   public double GetDisplacementShift()
48     { return GetDisplacementShift_8(); }
49
50   private native void SetInterpolationMode_9(int id0);
51   public void SetInterpolationMode(int id0)
52     { SetInterpolationMode_9(id0); }
53
54   private native int GetInterpolationMode_10();
55   public int GetInterpolationMode()
56     { return GetInterpolationMode_10(); }
57
58   private native void SetInterpolationModeToNearestNeighbor_11();
59   public void SetInterpolationModeToNearestNeighbor()
60     { SetInterpolationModeToNearestNeighbor_11(); }
61
62   private native void SetInterpolationModeToLinear_12();
63   public void SetInterpolationModeToLinear()
64     { SetInterpolationModeToLinear_12(); }
65
66   private native void SetInterpolationModeToCubic_13();
67   public void SetInterpolationModeToCubic()
68     { SetInterpolationModeToCubic_13(); }
69
70   private native String GetInterpolationModeAsString_14();
71   public String GetInterpolationModeAsString()
72     { return GetInterpolationModeAsString_14(); }
73
74   private native long MakeTransform_15();
75   public vtkAbstractTransform MakeTransform() {
76     long temp = MakeTransform_15();
77
78     if (temp == 0) return null;
79     return (vtkAbstractTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   private native int GetMTime_16();
83   public int GetMTime()
84     { return GetMTime_16(); }
85
86   public vtkGridTransform() { super(); }
87
88   public vtkGridTransform(long id) { super(id); }
89   public native long   VTKInit();
90
91 }