// java wrapper for vtkPoints2D object // package vtk; import vtk.*; public class vtkPoints2D 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 int Allocate_2(int id0,int id1); public int Allocate(int id0,int id1) { return Allocate_2(id0,id1); } private native void Initialize_3(); public void Initialize() { Initialize_3(); } private native void SetData_4(vtkDataArray id0); public void SetData(vtkDataArray id0) { SetData_4(id0); } private native long GetData_5(); public vtkDataArray GetData() { long temp = GetData_5(); if (temp == 0) return null; return (vtkDataArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetDataType_6(); public int GetDataType() { return GetDataType_6(); } private native void SetDataType_7(int id0); public void SetDataType(int id0) { SetDataType_7(id0); } private native void SetDataTypeToBit_8(); public void SetDataTypeToBit() { SetDataTypeToBit_8(); } private native void SetDataTypeToChar_9(); public void SetDataTypeToChar() { SetDataTypeToChar_9(); } private native void SetDataTypeToUnsignedChar_10(); public void SetDataTypeToUnsignedChar() { SetDataTypeToUnsignedChar_10(); } private native void SetDataTypeToShort_11(); public void SetDataTypeToShort() { SetDataTypeToShort_11(); } private native void SetDataTypeToUnsignedShort_12(); public void SetDataTypeToUnsignedShort() { SetDataTypeToUnsignedShort_12(); } private native void SetDataTypeToInt_13(); public void SetDataTypeToInt() { SetDataTypeToInt_13(); } private native void SetDataTypeToUnsignedInt_14(); public void SetDataTypeToUnsignedInt() { SetDataTypeToUnsignedInt_14(); } private native void SetDataTypeToLong_15(); public void SetDataTypeToLong() { SetDataTypeToLong_15(); } private native void SetDataTypeToUnsignedLong_16(); public void SetDataTypeToUnsignedLong() { SetDataTypeToUnsignedLong_16(); } private native void SetDataTypeToFloat_17(); public void SetDataTypeToFloat() { SetDataTypeToFloat_17(); } private native void SetDataTypeToDouble_18(); public void SetDataTypeToDouble() { SetDataTypeToDouble_18(); } private native void Squeeze_19(); public void Squeeze() { Squeeze_19(); } private native void Reset_20(); public void Reset() { Reset_20(); } private native void DeepCopy_21(vtkPoints2D id0); public void DeepCopy(vtkPoints2D id0) { DeepCopy_21(id0); } private native void ShallowCopy_22(vtkPoints2D id0); public void ShallowCopy(vtkPoints2D id0) { ShallowCopy_22(id0); } private native int GetActualMemorySize_23(); public int GetActualMemorySize() { return GetActualMemorySize_23(); } private native int GetNumberOfPoints_24(); public int GetNumberOfPoints() { return GetNumberOfPoints_24(); } private native double[] GetPoint_25(int id0); public double[] GetPoint(int id0) { return GetPoint_25(id0); } private native void GetPoint_26(int id0,double id1[]); public void GetPoint(int id0,double id1[]) { GetPoint_26(id0,id1); } private native void SetPoint_27(int id0,double id1[]); public void SetPoint(int id0,double id1[]) { SetPoint_27(id0,id1); } private native void SetPoint_28(int id0,double id1,double id2); public void SetPoint(int id0,double id1,double id2) { SetPoint_28(id0,id1,id2); } private native void InsertPoint_29(int id0,double id1[]); public void InsertPoint(int id0,double id1[]) { InsertPoint_29(id0,id1); } private native void InsertPoint_30(int id0,double id1,double id2); public void InsertPoint(int id0,double id1,double id2) { InsertPoint_30(id0,id1,id2); } private native int InsertNextPoint_31(double id0[]); public int InsertNextPoint(double id0[]) { return InsertNextPoint_31(id0); } private native int InsertNextPoint_32(double id0,double id1); public int InsertNextPoint(double id0,double id1) { return InsertNextPoint_32(id0,id1); } private native void RemovePoint_33(int id0); public void RemovePoint(int id0) { RemovePoint_33(id0); } private native void SetNumberOfPoints_34(int id0); public void SetNumberOfPoints(int id0) { SetNumberOfPoints_34(id0); } private native int Resize_35(int id0); public int Resize(int id0) { return Resize_35(id0); } private native void GetPoints_36(vtkIdList id0,vtkPoints2D id1); public void GetPoints(vtkIdList id0,vtkPoints2D id1) { GetPoints_36(id0,id1); } private native void ComputeBounds_37(); public void ComputeBounds() { ComputeBounds_37(); } private native double[] GetBounds_38(); public double[] GetBounds() { return GetBounds_38(); } private native void GetBounds_39(double id0[]); public void GetBounds(double id0[]) { GetBounds_39(id0); } public vtkPoints2D() { super(); } public vtkPoints2D(long id) { super(id); } public native long VTKInit(); }