X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=vtk%2Fsrc%2Fvtk%2FvtkImageSeparableConvolution.java;fp=vtk%2Fsrc%2Fvtk%2FvtkImageSeparableConvolution.java;h=dd7d76753c56e14b2225f5bc3a179ac1e161d723;hb=0f1acf557db4515528bc452c037db0831fd34ecf;hp=0000000000000000000000000000000000000000;hpb=12e21051bd57248b39831d79d68d455077047cdb;p=simantics%2F3d.git diff --git a/vtk/src/vtk/vtkImageSeparableConvolution.java b/vtk/src/vtk/vtkImageSeparableConvolution.java new file mode 100644 index 00000000..dd7d7675 --- /dev/null +++ b/vtk/src/vtk/vtkImageSeparableConvolution.java @@ -0,0 +1,63 @@ +// java wrapper for vtkImageSeparableConvolution object +// + +package vtk; +import vtk.*; + +public class vtkImageSeparableConvolution extends vtkImageDecomposeFilter +{ + + private native int IsTypeOf_0(String id0); + public int IsTypeOf(String id0) + { return IsTypeOf_0(id0); } + + private native int IsA_1(String id0); + public int IsA(String id0) + { return IsA_1(id0); } + + private native void SetXKernel_2(vtkFloatArray id0); + public void SetXKernel(vtkFloatArray id0) + { SetXKernel_2(id0); } + + private native long GetXKernel_3(); + public vtkFloatArray GetXKernel() { + long temp = GetXKernel_3(); + + if (temp == 0) return null; + return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native void SetYKernel_4(vtkFloatArray id0); + public void SetYKernel(vtkFloatArray id0) + { SetYKernel_4(id0); } + + private native long GetYKernel_5(); + public vtkFloatArray GetYKernel() { + long temp = GetYKernel_5(); + + if (temp == 0) return null; + return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native void SetZKernel_6(vtkFloatArray id0); + public void SetZKernel(vtkFloatArray id0) + { SetZKernel_6(id0); } + + private native long GetZKernel_7(); + public vtkFloatArray GetZKernel() { + long temp = GetZKernel_7(); + + if (temp == 0) return null; + return (vtkFloatArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); +} + + private native int GetMTime_8(); + public int GetMTime() + { return GetMTime_8(); } + + public vtkImageSeparableConvolution() { super(); } + + public vtkImageSeparableConvolution(long id) { super(id); } + public native long VTKInit(); + +}