// java wrapper for vtkGridTransform object // package vtk; import vtk.*; public class vtkGridTransform extends vtkWarpTransform { private native String GetClassName_0(); public String GetClassName() { return GetClassName_0(); } private native int IsA_1(String id0); public int IsA(String id0) { return IsA_1(id0); } private native void SetDisplacementGrid_2(vtkImageData id0); public void SetDisplacementGrid(vtkImageData id0) { SetDisplacementGrid_2(id0); } private native long GetDisplacementGrid_3(); public vtkImageData GetDisplacementGrid() { long temp = GetDisplacementGrid_3(); if (temp == 0) return null; return (vtkImageData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetDisplacementScale_4(double id0); public void SetDisplacementScale(double id0) { SetDisplacementScale_4(id0); } private native double GetDisplacementScale_5(); public double GetDisplacementScale() { return GetDisplacementScale_5(); } private native void SetDisplacementShift_6(double id0); public void SetDisplacementShift(double id0) { SetDisplacementShift_6(id0); } private native double GetDisplacementShift_7(); public double GetDisplacementShift() { return GetDisplacementShift_7(); } private native void SetInterpolationMode_8(int id0); public void SetInterpolationMode(int id0) { SetInterpolationMode_8(id0); } private native int GetInterpolationMode_9(); public int GetInterpolationMode() { return GetInterpolationMode_9(); } private native void SetInterpolationModeToNearestNeighbor_10(); public void SetInterpolationModeToNearestNeighbor() { SetInterpolationModeToNearestNeighbor_10(); } private native void SetInterpolationModeToLinear_11(); public void SetInterpolationModeToLinear() { SetInterpolationModeToLinear_11(); } private native void SetInterpolationModeToCubic_12(); public void SetInterpolationModeToCubic() { SetInterpolationModeToCubic_12(); } private native String GetInterpolationModeAsString_13(); public String GetInterpolationModeAsString() { return GetInterpolationModeAsString_13(); } private native long MakeTransform_14(); public vtkAbstractTransform MakeTransform() { long temp = MakeTransform_14(); if (temp == 0) return null; return (vtkAbstractTransform)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetMTime_15(); public int GetMTime() { return GetMTime_15(); } public vtkGridTransform() { super(); } public vtkGridTransform(long id) { super(id); } public native long VTKInit(); }