// java wrapper for vtkPointSet object // package vtk; import vtk.*; public class vtkPointSet extends vtkDataSet { 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 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 void GetPoint_5(int id0,double id1[]); public void GetPoint(int id0,double id1[]) { GetPoint_5(id0,id1); } private native int FindPoint_6(double id0[]); public int FindPoint(double id0[]) { return FindPoint_6(id0); } private native int FindPoint_7(double id0,double id1,double id2); public int FindPoint(double id0,double id1,double id2) { return FindPoint_7(id0,id1,id2); } private native double[] GetPoint_8(int id0); public double[] GetPoint(int id0) { return GetPoint_8(id0); } private native long NewCellIterator_9(); public vtkCellIterator NewCellIterator() { long temp = NewCellIterator_9(); if (temp == 0) return null; return (vtkCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetMTime_10(); public int GetMTime() { return GetMTime_10(); } private native void ComputeBounds_11(); public void ComputeBounds() { ComputeBounds_11(); } private native void Squeeze_12(); public void Squeeze() { Squeeze_12(); } private native void SetPoints_13(vtkPoints id0); public void SetPoints(vtkPoints id0) { SetPoints_13(id0); } private native long GetPoints_14(); public vtkPoints GetPoints() { long temp = GetPoints_14(); if (temp == 0) return null; return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetActualMemorySize_15(); public int GetActualMemorySize() { return GetActualMemorySize_15(); } private native void ShallowCopy_16(vtkDataObject id0); public void ShallowCopy(vtkDataObject id0) { ShallowCopy_16(id0); } private native void DeepCopy_17(vtkDataObject id0); public void DeepCopy(vtkDataObject id0) { DeepCopy_17(id0); } private native void Register_18(vtkObjectBase id0); public void Register(vtkObjectBase id0) { Register_18(id0); } private native void UnRegister_19(vtkObjectBase id0); public void UnRegister(vtkObjectBase id0) { UnRegister_19(id0); } private native long GetData_20(vtkInformation id0); public vtkPointSet GetData(vtkInformation id0) { long temp = GetData_20(id0); if (temp == 0) return null; return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetData_21(vtkInformationVector id0,int id1); public vtkPointSet GetData(vtkInformationVector id0,int id1) { long temp = GetData_21(id0,id1); if (temp == 0) return null; return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkPointSet() { super(); } public vtkPointSet(long id) { super(id); } }