]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkResampleToImage.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkResampleToImage.java
1 // java wrapper for vtkResampleToImage object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkResampleToImage extends vtkAlgorithm
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 SetUseInputBounds_2(boolean id0);
19   public void SetUseInputBounds(boolean id0)
20     { SetUseInputBounds_2(id0); }
21
22   private native boolean GetUseInputBounds_3();
23   public boolean GetUseInputBounds()
24     { return GetUseInputBounds_3(); }
25
26   private native void UseInputBoundsOn_4();
27   public void UseInputBoundsOn()
28     { UseInputBoundsOn_4(); }
29
30   private native void UseInputBoundsOff_5();
31   public void UseInputBoundsOff()
32     { UseInputBoundsOff_5(); }
33
34   private native void SetSamplingBounds_6(double id0,double id1,double id2,double id3,double id4,double id5);
35   public void SetSamplingBounds(double id0,double id1,double id2,double id3,double id4,double id5)
36     { SetSamplingBounds_6(id0,id1,id2,id3,id4,id5); }
37
38   private native void SetSamplingBounds_7(double id0[]);
39   public void SetSamplingBounds(double id0[])
40     { SetSamplingBounds_7(id0); }
41
42   private native double[] GetSamplingBounds_8();
43   public double[] GetSamplingBounds()
44     { return GetSamplingBounds_8(); }
45
46   private native void SetSamplingDimensions_9(int id0,int id1,int id2);
47   public void SetSamplingDimensions(int id0,int id1,int id2)
48     { SetSamplingDimensions_9(id0,id1,id2); }
49
50   private native void SetSamplingDimensions_10(int id0[]);
51   public void SetSamplingDimensions(int id0[])
52     { SetSamplingDimensions_10(id0); }
53
54   private native int[]  GetSamplingDimensions_11();
55   public int[]  GetSamplingDimensions()
56     { return GetSamplingDimensions_11(); }
57
58   private native long GetOutput_12();
59   public vtkImageData GetOutput() {
60     long temp = GetOutput_12();
61
62     if (temp == 0) return null;
63     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   public vtkResampleToImage() { super(); }
67
68   public vtkResampleToImage(long id) { super(id); }
69   public native long   VTKInit();
70
71 }