// java wrapper for vtkPointSet object // package vtk; import vtk.*; public class vtkPointSet extends vtkDataSet { 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 Initialize_2(); public void Initialize() { Initialize_2(); } private native void CopyStructure_3(vtkDataSet id0); public void CopyStructure(vtkDataSet id0) { CopyStructure_3(id0); } private native int GetNumberOfPoints_4(); public int GetNumberOfPoints() { return GetNumberOfPoints_4(); } private native double[] GetPoint_5(int id0); public double[] GetPoint(int id0) { return GetPoint_5(id0); } private native void GetPoint_6(int id0,double id1[]); public void GetPoint(int id0,double id1[]) { GetPoint_6(id0,id1); } private native int FindPoint_7(double id0[]); public int FindPoint(double id0[]) { return FindPoint_7(id0); } private native int FindPoint_8(double id0,double id1,double id2); public int FindPoint(double id0,double id1,double id2) { return FindPoint_8(id0,id1,id2); } private native int GetMTime_9(); public int GetMTime() { return GetMTime_9(); } private native void ComputeBounds_10(); public void ComputeBounds() { ComputeBounds_10(); } private native void Squeeze_11(); public void Squeeze() { Squeeze_11(); } private native void SetPoints_12(vtkPoints id0); public void SetPoints(vtkPoints id0) { SetPoints_12(id0); } private native long GetPoints_13(); public vtkPoints GetPoints() { long temp = GetPoints_13(); if (temp == 0) return null; return (vtkPoints)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetActualMemorySize_14(); public int GetActualMemorySize() { return GetActualMemorySize_14(); } private native void ShallowCopy_15(vtkDataObject id0); public void ShallowCopy(vtkDataObject id0) { ShallowCopy_15(id0); } private native void DeepCopy_16(vtkDataObject id0); public void DeepCopy(vtkDataObject id0) { DeepCopy_16(id0); } private native long GetData_17(vtkInformation id0); public vtkPointSet GetData(vtkInformation id0) { long temp = GetData_17(id0); if (temp == 0) return null; return (vtkPointSet)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetData_18(vtkInformationVector id0,int id1); public vtkPointSet GetData(vtkInformationVector id0,int id1) { long temp = GetData_18(id0,id1); if (temp == 0) return null; return (vtkPointSet)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkPointSet() { super(); } public vtkPointSet(long id) { super(id); } }