1 // java wrapper for vtkPointSet object
7 public class vtkPointSet extends vtkDataSet
10 private native int IsTypeOf_0(String id0);
11 public int IsTypeOf(String id0)
12 { return IsTypeOf_0(id0); }
14 private native int IsA_1(String id0);
15 public int IsA(String id0)
16 { return IsA_1(id0); }
18 private native void Initialize_2();
19 public void Initialize()
22 private native void CopyStructure_3(vtkDataSet id0);
23 public void CopyStructure(vtkDataSet id0)
24 { CopyStructure_3(id0); }
26 private native int GetNumberOfPoints_4();
27 public int GetNumberOfPoints()
28 { return GetNumberOfPoints_4(); }
30 private native void GetPoint_5(int id0,double id1[]);
31 public void GetPoint(int id0,double id1[])
32 { GetPoint_5(id0,id1); }
34 private native int FindPoint_6(double id0[]);
35 public int FindPoint(double id0[])
36 { return FindPoint_6(id0); }
38 private native int FindPoint_7(double id0,double id1,double id2);
39 public int FindPoint(double id0,double id1,double id2)
40 { return FindPoint_7(id0,id1,id2); }
42 private native double[] GetPoint_8(int id0);
43 public double[] GetPoint(int id0)
44 { return GetPoint_8(id0); }
46 private native long NewCellIterator_9();
47 public vtkCellIterator NewCellIterator() {
48 long temp = NewCellIterator_9();
50 if (temp == 0) return null;
51 return (vtkCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
54 private native int GetMTime_10();
56 { return GetMTime_10(); }
58 private native void ComputeBounds_11();
59 public void ComputeBounds()
60 { ComputeBounds_11(); }
62 private native void Squeeze_12();
66 private native void SetPoints_13(vtkPoints id0);
67 public void SetPoints(vtkPoints id0)
68 { SetPoints_13(id0); }
70 private native long GetPoints_14();
71 public vtkPoints GetPoints() {
72 long temp = GetPoints_14();
74 if (temp == 0) return null;
75 return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
78 private native int GetActualMemorySize_15();
79 public int GetActualMemorySize()
80 { return GetActualMemorySize_15(); }
82 private native void ShallowCopy_16(vtkDataObject id0);
83 public void ShallowCopy(vtkDataObject id0)
84 { ShallowCopy_16(id0); }
86 private native void DeepCopy_17(vtkDataObject id0);
87 public void DeepCopy(vtkDataObject id0)
90 private native void Register_18(vtkObjectBase id0);
91 public void Register(vtkObjectBase id0)
94 private native void UnRegister_19(vtkObjectBase id0);
95 public void UnRegister(vtkObjectBase id0)
96 { UnRegister_19(id0); }
98 private native long GetData_20(vtkInformation id0);
99 public vtkPointSet GetData(vtkInformation id0) {
100 long temp = GetData_20(id0);
102 if (temp == 0) return null;
103 return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
106 private native long GetData_21(vtkInformationVector id0,int id1);
107 public vtkPointSet GetData(vtkInformationVector id0,int id1) {
108 long temp = GetData_21(id0,id1);
110 if (temp == 0) return null;
111 return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
114 public vtkPointSet() { super(); }
116 public vtkPointSet(long id) { super(id); }