// java wrapper for vtkTransform2D object // package vtk; import vtk.*; public class vtkTransform2D extends vtkObject { 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 Identity_2(); public void Identity() { Identity_2(); } private native void Inverse_3(); public void Inverse() { Inverse_3(); } private native void Translate_4(double id0,double id1); public void Translate(double id0,double id1) { Translate_4(id0,id1); } private native void Translate_5(double id0[]); public void Translate(double id0[]) { Translate_5(id0); } private native void Rotate_6(double id0); public void Rotate(double id0) { Rotate_6(id0); } private native void Scale_7(double id0,double id1); public void Scale(double id0,double id1) { Scale_7(id0,id1); } private native void Scale_8(double id0[]); public void Scale(double id0[]) { Scale_8(id0); } private native void SetMatrix_9(vtkMatrix3x3 id0); public void SetMatrix(vtkMatrix3x3 id0) { SetMatrix_9(id0); } private native void SetMatrix_10(double id0[]); public void SetMatrix(double id0[]) { SetMatrix_10(id0); } private native long GetMatrix_11(); public vtkMatrix3x3 GetMatrix() { long temp = GetMatrix_11(); if (temp == 0) return null; return (vtkMatrix3x3)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void GetMatrix_12(vtkMatrix3x3 id0); public void GetMatrix(vtkMatrix3x3 id0) { GetMatrix_12(id0); } private native void GetPosition_13(double id0[]); public void GetPosition(double id0[]) { GetPosition_13(id0); } private native void GetScale_14(double id0[]); public void GetScale(double id0[]) { GetScale_14(id0); } private native void GetInverse_15(vtkMatrix3x3 id0); public void GetInverse(vtkMatrix3x3 id0) { GetInverse_15(id0); } private native void GetTranspose_16(vtkMatrix3x3 id0); public void GetTranspose(vtkMatrix3x3 id0) { GetTranspose_16(id0); } private native int GetMTime_17(); public int GetMTime() { return GetMTime_17(); } private native void TransformPoints_18(vtkPoints2D id0,vtkPoints2D id1); public void TransformPoints(vtkPoints2D id0,vtkPoints2D id1) { TransformPoints_18(id0,id1); } private native void InverseTransformPoints_19(vtkPoints2D id0,vtkPoints2D id1); public void InverseTransformPoints(vtkPoints2D id0,vtkPoints2D id1) { InverseTransformPoints_19(id0,id1); } private native void MultiplyPoint_20(double id0[],double id1[]); public void MultiplyPoint(double id0[],double id1[]) { MultiplyPoint_20(id0,id1); } public vtkTransform2D() { super(); } public vtkTransform2D(long id) { super(id); } public native long VTKInit(); }