]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkDataSet.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkDataSet.java
1 // java wrapper for vtkDataSet object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkDataSet extends vtkDataObject
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 CopyStructure_2(vtkDataSet id0);
19   public void CopyStructure(vtkDataSet id0)
20     { CopyStructure_2(id0); }
21
22   private native void CopyAttributes_3(vtkDataSet id0);
23   public void CopyAttributes(vtkDataSet id0)
24     { CopyAttributes_3(id0); }
25
26   private native int GetNumberOfPoints_4();
27   public int GetNumberOfPoints()
28     { return GetNumberOfPoints_4(); }
29
30   private native int GetNumberOfCells_5();
31   public int GetNumberOfCells()
32     { return GetNumberOfCells_5(); }
33
34   private native double[] GetPoint_6(int id0);
35   public double[] GetPoint(int id0)
36     { return GetPoint_6(id0); }
37
38   private native void GetPoint_7(int id0,double id1[]);
39   public void GetPoint(int id0,double id1[])
40     { GetPoint_7(id0,id1); }
41
42   private native long NewCellIterator_8();
43   public vtkCellIterator NewCellIterator() {
44     long temp = NewCellIterator_8();
45
46     if (temp == 0) return null;
47     return (vtkCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetCell_9(int id0);
51   public vtkCell GetCell(int id0) {
52     long temp = GetCell_9(id0);
53
54     if (temp == 0) return null;
55     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native long GetCell_10(int id0,int id1,int id2);
59   public vtkCell GetCell(int id0,int id1,int id2) {
60     long temp = GetCell_10(id0,id1,id2);
61
62     if (temp == 0) return null;
63     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   private native void GetCell_11(int id0,vtkGenericCell id1);
67   public void GetCell(int id0,vtkGenericCell id1)
68     { GetCell_11(id0,id1); }
69
70   private native void GetCellBounds_12(int id0,double id1[]);
71   public void GetCellBounds(int id0,double id1[])
72     { GetCellBounds_12(id0,id1); }
73
74   private native int GetCellType_13(int id0);
75   public int GetCellType(int id0)
76     { return GetCellType_13(id0); }
77
78   private native void GetCellTypes_14(vtkCellTypes id0);
79   public void GetCellTypes(vtkCellTypes id0)
80     { GetCellTypes_14(id0); }
81
82   private native void GetCellPoints_15(int id0,vtkIdList id1);
83   public void GetCellPoints(int id0,vtkIdList id1)
84     { GetCellPoints_15(id0,id1); }
85
86   private native void GetPointCells_16(int id0,vtkIdList id1);
87   public void GetPointCells(int id0,vtkIdList id1)
88     { GetPointCells_16(id0,id1); }
89
90   private native void GetCellNeighbors_17(int id0,vtkIdList id1,vtkIdList id2);
91   public void GetCellNeighbors(int id0,vtkIdList id1,vtkIdList id2)
92     { GetCellNeighbors_17(id0,id1,id2); }
93
94   private native int FindPoint_18(double id0,double id1,double id2);
95   public int FindPoint(double id0,double id1,double id2)
96     { return FindPoint_18(id0,id1,id2); }
97
98   private native int FindPoint_19(double id0[]);
99   public int FindPoint(double id0[])
100     { return FindPoint_19(id0); }
101
102   private native int GetMTime_20();
103   public int GetMTime()
104     { return GetMTime_20(); }
105
106   private native long GetCellData_21();
107   public vtkCellData GetCellData() {
108     long temp = GetCellData_21();
109
110     if (temp == 0) return null;
111     return (vtkCellData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
112 }
113
114   private native long GetPointData_22();
115   public vtkPointData GetPointData() {
116     long temp = GetPointData_22();
117
118     if (temp == 0) return null;
119     return (vtkPointData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
120 }
121
122   private native void Squeeze_23();
123   public void Squeeze()
124     { Squeeze_23(); }
125
126   private native void ComputeBounds_24();
127   public void ComputeBounds()
128     { ComputeBounds_24(); }
129
130   private native double[] GetBounds_25();
131   public double[] GetBounds()
132     { return GetBounds_25(); }
133
134   private native void GetBounds_26(double id0[]);
135   public void GetBounds(double id0[])
136     { GetBounds_26(id0); }
137
138   private native double[] GetCenter_27();
139   public double[] GetCenter()
140     { return GetCenter_27(); }
141
142   private native void GetCenter_28(double id0[]);
143   public void GetCenter(double id0[])
144     { GetCenter_28(id0); }
145
146   private native double GetLength_29();
147   public double GetLength()
148     { return GetLength_29(); }
149
150   private native void Initialize_30();
151   public void Initialize()
152     { Initialize_30(); }
153
154   private native void GetScalarRange_31(double id0[]);
155   public void GetScalarRange(double id0[])
156     { GetScalarRange_31(id0); }
157
158   private native double[] GetScalarRange_32();
159   public double[] GetScalarRange()
160     { return GetScalarRange_32(); }
161
162   private native int GetMaxCellSize_33();
163   public int GetMaxCellSize()
164     { return GetMaxCellSize_33(); }
165
166   private native int GetActualMemorySize_34();
167   public int GetActualMemorySize()
168     { return GetActualMemorySize_34(); }
169
170   private native int GetDataObjectType_35();
171   public int GetDataObjectType()
172     { return GetDataObjectType_35(); }
173
174   private native void ShallowCopy_36(vtkDataObject id0);
175   public void ShallowCopy(vtkDataObject id0)
176     { ShallowCopy_36(id0); }
177
178   private native void DeepCopy_37(vtkDataObject id0);
179   public void DeepCopy(vtkDataObject id0)
180     { DeepCopy_37(id0); }
181
182   private native int CheckAttributes_38();
183   public int CheckAttributes()
184     { return CheckAttributes_38(); }
185
186   private native void GenerateGhostArray_39(int id0[]);
187   public void GenerateGhostArray(int id0[])
188     { GenerateGhostArray_39(id0); }
189
190   private native void GenerateGhostArray_40(int id0[],boolean id1);
191   public void GenerateGhostArray(int id0[],boolean id1)
192     { GenerateGhostArray_40(id0,id1); }
193
194   private native long GetData_41(vtkInformation id0);
195   public vtkDataSet GetData(vtkInformation id0) {
196     long temp = GetData_41(id0);
197
198     if (temp == 0) return null;
199     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
200 }
201
202   private native long GetData_42(vtkInformationVector id0,int id1);
203   public vtkDataSet GetData(vtkInformationVector id0,int id1) {
204     long temp = GetData_42(id0,id1);
205
206     if (temp == 0) return null;
207     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
208 }
209
210   private native long GetAttributesAsFieldData_43(int id0);
211   public vtkFieldData GetAttributesAsFieldData(int id0) {
212     long temp = GetAttributesAsFieldData_43(id0);
213
214     if (temp == 0) return null;
215     return (vtkFieldData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
216 }
217
218   private native int GetNumberOfElements_44(int id0);
219   public int GetNumberOfElements(int id0)
220     { return GetNumberOfElements_44(id0); }
221
222   private native boolean HasAnyGhostCells_45();
223   public boolean HasAnyGhostCells()
224     { return HasAnyGhostCells_45(); }
225
226   private native boolean HasAnyGhostPoints_46();
227   public boolean HasAnyGhostPoints()
228     { return HasAnyGhostPoints_46(); }
229
230   private native boolean HasAnyBlankCells_47();
231   public boolean HasAnyBlankCells()
232     { return HasAnyBlankCells_47(); }
233
234   private native boolean HasAnyBlankPoints_48();
235   public boolean HasAnyBlankPoints()
236     { return HasAnyBlankPoints_48(); }
237
238   private native long GetPointGhostArray_49();
239   public vtkUnsignedCharArray GetPointGhostArray() {
240     long temp = GetPointGhostArray_49();
241
242     if (temp == 0) return null;
243     return (vtkUnsignedCharArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
244 }
245
246   private native void UpdatePointGhostArrayCache_50();
247   public void UpdatePointGhostArrayCache()
248     { UpdatePointGhostArrayCache_50(); }
249
250   private native long AllocatePointGhostArray_51();
251   public vtkUnsignedCharArray AllocatePointGhostArray() {
252     long temp = AllocatePointGhostArray_51();
253
254     if (temp == 0) return null;
255     return (vtkUnsignedCharArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
256 }
257
258   private native long GetCellGhostArray_52();
259   public vtkUnsignedCharArray GetCellGhostArray() {
260     long temp = GetCellGhostArray_52();
261
262     if (temp == 0) return null;
263     return (vtkUnsignedCharArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
264 }
265
266   private native void UpdateCellGhostArrayCache_53();
267   public void UpdateCellGhostArrayCache()
268     { UpdateCellGhostArrayCache_53(); }
269
270   private native long AllocateCellGhostArray_54();
271   public vtkUnsignedCharArray AllocateCellGhostArray() {
272     long temp = AllocateCellGhostArray_54();
273
274     if (temp == 0) return null;
275     return (vtkUnsignedCharArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
276 }
277
278   public vtkDataSet() { super(); }
279
280   public vtkDataSet(long id) { super(id); }
281
282 }