]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkImageSeparableConvolution.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkImageSeparableConvolution.java
1 // java wrapper for vtkImageSeparableConvolution object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkImageSeparableConvolution extends vtkImageDecomposeFilter
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 SetXKernel_2(vtkFloatArray id0);
19   public void SetXKernel(vtkFloatArray id0)
20     { SetXKernel_2(id0); }
21
22   private native long GetXKernel_3();
23   public vtkFloatArray GetXKernel() {
24     long temp = GetXKernel_3();
25
26     if (temp == 0) return null;
27     return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void SetYKernel_4(vtkFloatArray id0);
31   public void SetYKernel(vtkFloatArray id0)
32     { SetYKernel_4(id0); }
33
34   private native long GetYKernel_5();
35   public vtkFloatArray GetYKernel() {
36     long temp = GetYKernel_5();
37
38     if (temp == 0) return null;
39     return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetZKernel_6(vtkFloatArray id0);
43   public void SetZKernel(vtkFloatArray id0)
44     { SetZKernel_6(id0); }
45
46   private native long GetZKernel_7();
47   public vtkFloatArray GetZKernel() {
48     long temp = GetZKernel_7();
49
50     if (temp == 0) return null;
51     return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native int GetMTime_8();
55   public int GetMTime()
56     { return GetMTime_8(); }
57
58   public vtkImageSeparableConvolution() { super(); }
59
60   public vtkImageSeparableConvolution(long id) { super(id); }
61   public native long   VTKInit();
62
63 }