]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkImageBlend.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkImageBlend.java
1 // java wrapper for vtkImageBlend object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkImageBlend extends vtkThreadedImageAlgorithm
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 ReplaceNthInputConnection_2(int id0,vtkAlgorithmOutput id1);
19   public void ReplaceNthInputConnection(int id0,vtkAlgorithmOutput id1)
20     { ReplaceNthInputConnection_2(id0,id1); }
21
22   private native void SetInputData_3(int id0,vtkDataObject id1);
23   public void SetInputData(int id0,vtkDataObject id1)
24     { SetInputData_3(id0,id1); }
25
26   private native void SetInputData_4(vtkDataObject id0);
27   public void SetInputData(vtkDataObject id0)
28     { SetInputData_4(id0); }
29
30   private native long GetInput_5(int id0);
31   public vtkDataObject GetInput(int id0) {
32     long temp = GetInput_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetInput_6();
39   public vtkDataObject GetInput() {
40     long temp = GetInput_6();
41
42     if (temp == 0) return null;
43     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native int GetNumberOfInputs_7();
47   public int GetNumberOfInputs()
48     { return GetNumberOfInputs_7(); }
49
50   private native void SetOpacity_8(int id0,double id1);
51   public void SetOpacity(int id0,double id1)
52     { SetOpacity_8(id0,id1); }
53
54   private native double GetOpacity_9(int id0);
55   public double GetOpacity(int id0)
56     { return GetOpacity_9(id0); }
57
58   private native void SetStencilConnection_10(vtkAlgorithmOutput id0);
59   public void SetStencilConnection(vtkAlgorithmOutput id0)
60     { SetStencilConnection_10(id0); }
61
62   private native void SetStencilData_11(vtkImageStencilData id0);
63   public void SetStencilData(vtkImageStencilData id0)
64     { SetStencilData_11(id0); }
65
66   private native long GetStencil_12();
67   public vtkImageStencilData GetStencil() {
68     long temp = GetStencil_12();
69
70     if (temp == 0) return null;
71     return (vtkImageStencilData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native void SetBlendMode_13(int id0);
75   public void SetBlendMode(int id0)
76     { SetBlendMode_13(id0); }
77
78   private native int GetBlendModeMinValue_14();
79   public int GetBlendModeMinValue()
80     { return GetBlendModeMinValue_14(); }
81
82   private native int GetBlendModeMaxValue_15();
83   public int GetBlendModeMaxValue()
84     { return GetBlendModeMaxValue_15(); }
85
86   private native int GetBlendMode_16();
87   public int GetBlendMode()
88     { return GetBlendMode_16(); }
89
90   private native void SetBlendModeToNormal_17();
91   public void SetBlendModeToNormal()
92     { SetBlendModeToNormal_17(); }
93
94   private native void SetBlendModeToCompound_18();
95   public void SetBlendModeToCompound()
96     { SetBlendModeToCompound_18(); }
97
98   private native String GetBlendModeAsString_19();
99   public String GetBlendModeAsString()
100     { return GetBlendModeAsString_19(); }
101
102   private native void SetCompoundThreshold_20(double id0);
103   public void SetCompoundThreshold(double id0)
104     { SetCompoundThreshold_20(id0); }
105
106   private native double GetCompoundThreshold_21();
107   public double GetCompoundThreshold()
108     { return GetCompoundThreshold_21(); }
109
110   public vtkImageBlend() { super(); }
111
112   public vtkImageBlend(long id) { super(id); }
113   public native long   VTKInit();
114
115 }