]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPointSet.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkPointSet.java
1 // java wrapper for vtkPointSet object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPointSet extends vtkDataSet
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native void Initialize_2();
19   public void Initialize()
20     { Initialize_2(); }
21
22   private native void CopyStructure_3(vtkDataSet id0);
23   public void CopyStructure(vtkDataSet id0)
24     { CopyStructure_3(id0); }
25
26   private native int GetNumberOfPoints_4();
27   public int GetNumberOfPoints()
28     { return GetNumberOfPoints_4(); }
29
30   private native void GetPoint_5(int id0,double id1[]);
31   public void GetPoint(int id0,double id1[])
32     { GetPoint_5(id0,id1); }
33
34   private native int FindPoint_6(double id0[]);
35   public int FindPoint(double id0[])
36     { return FindPoint_6(id0); }
37
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); }
41
42   private native double[] GetPoint_8(int id0);
43   public double[] GetPoint(int id0)
44     { return GetPoint_8(id0); }
45
46   private native long NewCellIterator_9();
47   public vtkCellIterator NewCellIterator() {
48     long temp = NewCellIterator_9();
49
50     if (temp == 0) return null;
51     return (vtkCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native int GetMTime_10();
55   public int GetMTime()
56     { return GetMTime_10(); }
57
58   private native void ComputeBounds_11();
59   public void ComputeBounds()
60     { ComputeBounds_11(); }
61
62   private native void Squeeze_12();
63   public void Squeeze()
64     { Squeeze_12(); }
65
66   private native void SetPoints_13(vtkPoints id0);
67   public void SetPoints(vtkPoints id0)
68     { SetPoints_13(id0); }
69
70   private native long GetPoints_14();
71   public vtkPoints GetPoints() {
72     long temp = GetPoints_14();
73
74     if (temp == 0) return null;
75     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native int GetActualMemorySize_15();
79   public int GetActualMemorySize()
80     { return GetActualMemorySize_15(); }
81
82   private native void ShallowCopy_16(vtkDataObject id0);
83   public void ShallowCopy(vtkDataObject id0)
84     { ShallowCopy_16(id0); }
85
86   private native void DeepCopy_17(vtkDataObject id0);
87   public void DeepCopy(vtkDataObject id0)
88     { DeepCopy_17(id0); }
89
90   private native void Register_18(vtkObjectBase id0);
91   public void Register(vtkObjectBase id0)
92     { Register_18(id0); }
93
94   private native void UnRegister_19(vtkObjectBase id0);
95   public void UnRegister(vtkObjectBase id0)
96     { UnRegister_19(id0); }
97
98   private native long GetData_20(vtkInformation id0);
99   public vtkPointSet GetData(vtkInformation id0) {
100     long temp = GetData_20(id0);
101
102     if (temp == 0) return null;
103     return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
104 }
105
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);
109
110     if (temp == 0) return null;
111     return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
112 }
113
114   public vtkPointSet() { super(); }
115
116   public vtkPointSet(long id) { super(id); }
117
118 }