]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkImageMapper.java
Fix PNG loading
[simantics/3d.git] / vtk / src / vtk / vtkImageMapper.java
1 // java wrapper for vtkImageMapper object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkImageMapper extends vtkMapper2D
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 GetMTime_2();
19   public int GetMTime()
20     { return GetMTime_2(); }
21
22   private native void SetColorWindow_3(double id0);
23   public void SetColorWindow(double id0)
24     { SetColorWindow_3(id0); }
25
26   private native double GetColorWindow_4();
27   public double GetColorWindow()
28     { return GetColorWindow_4(); }
29
30   private native void SetColorLevel_5(double id0);
31   public void SetColorLevel(double id0)
32     { SetColorLevel_5(id0); }
33
34   private native double GetColorLevel_6();
35   public double GetColorLevel()
36     { return GetColorLevel_6(); }
37
38   private native void SetZSlice_7(int id0);
39   public void SetZSlice(int id0)
40     { SetZSlice_7(id0); }
41
42   private native int GetZSlice_8();
43   public int GetZSlice()
44     { return GetZSlice_8(); }
45
46   private native int GetWholeZMin_9();
47   public int GetWholeZMin()
48     { return GetWholeZMin_9(); }
49
50   private native int GetWholeZMax_10();
51   public int GetWholeZMax()
52     { return GetWholeZMax_10(); }
53
54   private native void RenderStart_11(vtkViewport id0,vtkActor2D id1);
55   public void RenderStart(vtkViewport id0,vtkActor2D id1)
56     { RenderStart_11(id0,id1); }
57
58   private native void RenderData_12(vtkViewport id0,vtkImageData id1,vtkActor2D id2);
59   public void RenderData(vtkViewport id0,vtkImageData id1,vtkActor2D id2)
60     { RenderData_12(id0,id1,id2); }
61
62   private native double GetColorShift_13();
63   public double GetColorShift()
64     { return GetColorShift_13(); }
65
66   private native double GetColorScale_14();
67   public double GetColorScale()
68     { return GetColorScale_14(); }
69
70   private native void SetInputData_15(vtkImageData id0);
71   public void SetInputData(vtkImageData id0)
72     { SetInputData_15(id0); }
73
74   private native long GetInput_16();
75   public vtkImageData GetInput() {
76     long temp = GetInput_16();
77
78     if (temp == 0) return null;
79     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   private native void SetRenderToRectangle_17(int id0);
83   public void SetRenderToRectangle(int id0)
84     { SetRenderToRectangle_17(id0); }
85
86   private native int GetRenderToRectangle_18();
87   public int GetRenderToRectangle()
88     { return GetRenderToRectangle_18(); }
89
90   private native void RenderToRectangleOn_19();
91   public void RenderToRectangleOn()
92     { RenderToRectangleOn_19(); }
93
94   private native void RenderToRectangleOff_20();
95   public void RenderToRectangleOff()
96     { RenderToRectangleOff_20(); }
97
98   private native void SetUseCustomExtents_21(int id0);
99   public void SetUseCustomExtents(int id0)
100     { SetUseCustomExtents_21(id0); }
101
102   private native int GetUseCustomExtents_22();
103   public int GetUseCustomExtents()
104     { return GetUseCustomExtents_22(); }
105
106   private native void UseCustomExtentsOn_23();
107   public void UseCustomExtentsOn()
108     { UseCustomExtentsOn_23(); }
109
110   private native void UseCustomExtentsOff_24();
111   public void UseCustomExtentsOff()
112     { UseCustomExtentsOff_24(); }
113
114   private native void SetCustomDisplayExtents_25(int id0[]);
115   public void SetCustomDisplayExtents(int id0[])
116     { SetCustomDisplayExtents_25(id0); }
117
118   private native int[]  GetCustomDisplayExtents_26();
119   public int[]  GetCustomDisplayExtents()
120     { return GetCustomDisplayExtents_26(); }
121
122   public vtkImageMapper() { super(); }
123
124   public vtkImageMapper(long id) { super(id); }
125   public native long   VTKInit();
126
127 }