]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkImageToImageStencil.java
Editor internal toolbar for Plant3D editor
[simantics/3d.git] / vtk / src / vtk / vtkImageToImageStencil.java
1 // java wrapper for vtkImageToImageStencil object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkImageToImageStencil extends vtkImageStencilAlgorithm
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 SetInputData_2(vtkImageData id0);
19   public void SetInputData(vtkImageData id0)
20     { SetInputData_2(id0); }
21
22   private native long GetInput_3();
23   public vtkImageData GetInput() {
24     long temp = GetInput_3();
25
26     if (temp == 0) return null;
27     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void ThresholdByUpper_4(double id0);
31   public void ThresholdByUpper(double id0)
32     { ThresholdByUpper_4(id0); }
33
34   private native void ThresholdByLower_5(double id0);
35   public void ThresholdByLower(double id0)
36     { ThresholdByLower_5(id0); }
37
38   private native void ThresholdBetween_6(double id0,double id1);
39   public void ThresholdBetween(double id0,double id1)
40     { ThresholdBetween_6(id0,id1); }
41
42   private native void SetUpperThreshold_7(double id0);
43   public void SetUpperThreshold(double id0)
44     { SetUpperThreshold_7(id0); }
45
46   private native double GetUpperThreshold_8();
47   public double GetUpperThreshold()
48     { return GetUpperThreshold_8(); }
49
50   private native void SetLowerThreshold_9(double id0);
51   public void SetLowerThreshold(double id0)
52     { SetLowerThreshold_9(id0); }
53
54   private native double GetLowerThreshold_10();
55   public double GetLowerThreshold()
56     { return GetLowerThreshold_10(); }
57
58   public vtkImageToImageStencil() { super(); }
59
60   public vtkImageToImageStencil(long id) { super(id); }
61   public native long   VTKInit();
62
63 }