]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkVolume.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkVolume.java
1 // java wrapper for vtkVolume object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkVolume extends vtkProp3D
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 SetMapper_2(vtkAbstractVolumeMapper id0);
19   public void SetMapper(vtkAbstractVolumeMapper id0)
20     { SetMapper_2(id0); }
21
22   private native long GetMapper_3();
23   public vtkAbstractVolumeMapper GetMapper() {
24     long temp = GetMapper_3();
25
26     if (temp == 0) return null;
27     return (vtkAbstractVolumeMapper)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void SetProperty_4(vtkVolumeProperty id0);
31   public void SetProperty(vtkVolumeProperty id0)
32     { SetProperty_4(id0); }
33
34   private native long GetProperty_5();
35   public vtkVolumeProperty GetProperty() {
36     long temp = GetProperty_5();
37
38     if (temp == 0) return null;
39     return (vtkVolumeProperty)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void GetVolumes_6(vtkPropCollection id0);
43   public void GetVolumes(vtkPropCollection id0)
44     { GetVolumes_6(id0); }
45
46   private native void Update_7();
47   public void Update()
48     { Update_7(); }
49
50   private native double[] GetBounds_8();
51   public double[] GetBounds()
52     { return GetBounds_8(); }
53
54   private native void GetBounds_9(double id0[]);
55   public void GetBounds(double id0[])
56     { GetBounds_9(id0); }
57
58   private native double GetMinXBound_10();
59   public double GetMinXBound()
60     { return GetMinXBound_10(); }
61
62   private native double GetMaxXBound_11();
63   public double GetMaxXBound()
64     { return GetMaxXBound_11(); }
65
66   private native double GetMinYBound_12();
67   public double GetMinYBound()
68     { return GetMinYBound_12(); }
69
70   private native double GetMaxYBound_13();
71   public double GetMaxYBound()
72     { return GetMaxYBound_13(); }
73
74   private native double GetMinZBound_14();
75   public double GetMinZBound()
76     { return GetMinZBound_14(); }
77
78   private native double GetMaxZBound_15();
79   public double GetMaxZBound()
80     { return GetMaxZBound_15(); }
81
82   private native int GetMTime_16();
83   public int GetMTime()
84     { return GetMTime_16(); }
85
86   private native int GetRedrawMTime_17();
87   public int GetRedrawMTime()
88     { return GetRedrawMTime_17(); }
89
90   private native void ShallowCopy_18(vtkProp id0);
91   public void ShallowCopy(vtkProp id0)
92     { ShallowCopy_18(id0); }
93
94   private native int RenderVolumetricGeometry_19(vtkViewport id0);
95   public int RenderVolumetricGeometry(vtkViewport id0)
96     { return RenderVolumetricGeometry_19(id0); }
97
98   private native void ReleaseGraphicsResources_20(vtkWindow id0);
99   public void ReleaseGraphicsResources(vtkWindow id0)
100     { ReleaseGraphicsResources_20(id0); }
101
102   private native double GetGradientOpacityConstant_21(int id0);
103   public double GetGradientOpacityConstant(int id0)
104     { return GetGradientOpacityConstant_21(id0); }
105
106   private native double GetGradientOpacityConstant_22();
107   public double GetGradientOpacityConstant()
108     { return GetGradientOpacityConstant_22(); }
109
110   private native double GetArraySize_23();
111   public double GetArraySize()
112     { return GetArraySize_23(); }
113
114   private native void UpdateTransferFunctions_24(vtkRenderer id0);
115   public void UpdateTransferFunctions(vtkRenderer id0)
116     { UpdateTransferFunctions_24(id0); }
117
118   private native void UpdateScalarOpacityforSampleSize_25(vtkRenderer id0,double id1);
119   public void UpdateScalarOpacityforSampleSize(vtkRenderer id0,double id1)
120     { UpdateScalarOpacityforSampleSize_25(id0,id1); }
121
122   private native boolean GetSupportsSelection_26();
123   public boolean GetSupportsSelection()
124     { return GetSupportsSelection_26(); }
125
126   public vtkVolume() { super(); }
127
128   public vtkVolume(long id) { super(id); }
129   public native long   VTKInit();
130
131 }