// java wrapper for vtkGridTransform object // package vtk; import vtk.*; public class vtkGridTransform extends vtkWarpTransform { 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 SetDisplacementGridConnection_2(vtkAlgorithmOutput id0); public void SetDisplacementGridConnection(vtkAlgorithmOutput id0) { SetDisplacementGridConnection_2(id0); } private native void SetDisplacementGridData_3(vtkImageData id0); public void SetDisplacementGridData(vtkImageData id0) { SetDisplacementGridData_3(id0); } private native long GetDisplacementGrid_4(); public vtkImageData GetDisplacementGrid() { long temp = GetDisplacementGrid_4(); if (temp == 0) return null; return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetDisplacementScale_5(double id0); public void SetDisplacementScale(double id0) { SetDisplacementScale_5(id0); } private native double GetDisplacementScale_6(); public double GetDisplacementScale() { return GetDisplacementScale_6(); } private native void SetDisplacementShift_7(double id0); public void SetDisplacementShift(double id0) { SetDisplacementShift_7(id0); } private native double GetDisplacementShift_8(); public double GetDisplacementShift() { return GetDisplacementShift_8(); } private native void SetInterpolationMode_9(int id0); public void SetInterpolationMode(int id0) { SetInterpolationMode_9(id0); } private native int GetInterpolationMode_10(); public int GetInterpolationMode() { return GetInterpolationMode_10(); } private native void SetInterpolationModeToNearestNeighbor_11(); public void SetInterpolationModeToNearestNeighbor() { SetInterpolationModeToNearestNeighbor_11(); } private native void SetInterpolationModeToLinear_12(); public void SetInterpolationModeToLinear() { SetInterpolationModeToLinear_12(); } private native void SetInterpolationModeToCubic_13(); public void SetInterpolationModeToCubic() { SetInterpolationModeToCubic_13(); } private native String GetInterpolationModeAsString_14(); public String GetInterpolationModeAsString() { return GetInterpolationModeAsString_14(); } private native long MakeTransform_15(); public vtkAbstractTransform MakeTransform() { long temp = MakeTransform_15(); if (temp == 0) return null; return (vtkAbstractTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetMTime_16(); public int GetMTime() { return GetMTime_16(); } public vtkGridTransform() { super(); } public vtkGridTransform(long id) { super(id); } public native long VTKInit(); }