]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGenericCell.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkGenericCell.java
1 // java wrapper for vtkGenericCell object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGenericCell extends vtkCell
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 SetPoints_2(vtkPoints id0);
19   public void SetPoints(vtkPoints id0)
20     { SetPoints_2(id0); }
21
22   private native void SetPointIds_3(vtkIdList id0);
23   public void SetPointIds(vtkIdList id0)
24     { SetPointIds_3(id0); }
25
26   private native void ShallowCopy_4(vtkCell id0);
27   public void ShallowCopy(vtkCell id0)
28     { ShallowCopy_4(id0); }
29
30   private native void DeepCopy_5(vtkCell id0);
31   public void DeepCopy(vtkCell id0)
32     { DeepCopy_5(id0); }
33
34   private native int GetCellType_6();
35   public int GetCellType()
36     { return GetCellType_6(); }
37
38   private native int GetCellDimension_7();
39   public int GetCellDimension()
40     { return GetCellDimension_7(); }
41
42   private native int IsLinear_8();
43   public int IsLinear()
44     { return IsLinear_8(); }
45
46   private native int RequiresInitialization_9();
47   public int RequiresInitialization()
48     { return RequiresInitialization_9(); }
49
50   private native void Initialize_10();
51   public void Initialize()
52     { Initialize_10(); }
53
54   private native int RequiresExplicitFaceRepresentation_11();
55   public int RequiresExplicitFaceRepresentation()
56     { return RequiresExplicitFaceRepresentation_11(); }
57
58   private native int GetNumberOfEdges_12();
59   public int GetNumberOfEdges()
60     { return GetNumberOfEdges_12(); }
61
62   private native int GetNumberOfFaces_13();
63   public int GetNumberOfFaces()
64     { return GetNumberOfFaces_13(); }
65
66   private native long GetEdge_14(int id0);
67   public vtkCell GetEdge(int id0) {
68     long temp = GetEdge_14(id0);
69
70     if (temp == 0) return null;
71     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native long GetFace_15(int id0);
75   public vtkCell GetFace(int id0) {
76     long temp = GetFace_15(id0);
77
78     if (temp == 0) return null;
79     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   private native int CellBoundary_16(int id0,double id1[],vtkIdList id2);
83   public int CellBoundary(int id0,double id1[],vtkIdList id2)
84     { return CellBoundary_16(id0,id1,id2); }
85
86   private native void Contour_17(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkCellArray id4,vtkCellArray id5,vtkPointData id6,vtkPointData id7,vtkCellData id8,int id9,vtkCellData id10);
87   public void Contour(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkCellArray id4,vtkCellArray id5,vtkPointData id6,vtkPointData id7,vtkCellData id8,int id9,vtkCellData id10)
88     { Contour_17(id0,id1,id2,id3,id4,id5,id6,id7,id8,id9,id10); }
89
90   private native void Clip_18(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkPointData id4,vtkPointData id5,vtkCellData id6,int id7,vtkCellData id8,int id9);
91   public void Clip(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkPointData id4,vtkPointData id5,vtkCellData id6,int id7,vtkCellData id8,int id9)
92     { Clip_18(id0,id1,id2,id3,id4,id5,id6,id7,id8,id9); }
93
94   private native int Triangulate_19(int id0,vtkIdList id1,vtkPoints id2);
95   public int Triangulate(int id0,vtkIdList id1,vtkPoints id2)
96     { return Triangulate_19(id0,id1,id2); }
97
98   private native int GetParametricCenter_20(double id0[]);
99   public int GetParametricCenter(double id0[])
100     { return GetParametricCenter_20(id0); }
101
102   private native int IsPrimaryCell_21();
103   public int IsPrimaryCell()
104     { return IsPrimaryCell_21(); }
105
106   private native void SetCellType_22(int id0);
107   public void SetCellType(int id0)
108     { SetCellType_22(id0); }
109
110   private native void SetCellTypeToEmptyCell_23();
111   public void SetCellTypeToEmptyCell()
112     { SetCellTypeToEmptyCell_23(); }
113
114   private native void SetCellTypeToVertex_24();
115   public void SetCellTypeToVertex()
116     { SetCellTypeToVertex_24(); }
117
118   private native void SetCellTypeToPolyVertex_25();
119   public void SetCellTypeToPolyVertex()
120     { SetCellTypeToPolyVertex_25(); }
121
122   private native void SetCellTypeToLine_26();
123   public void SetCellTypeToLine()
124     { SetCellTypeToLine_26(); }
125
126   private native void SetCellTypeToPolyLine_27();
127   public void SetCellTypeToPolyLine()
128     { SetCellTypeToPolyLine_27(); }
129
130   private native void SetCellTypeToTriangle_28();
131   public void SetCellTypeToTriangle()
132     { SetCellTypeToTriangle_28(); }
133
134   private native void SetCellTypeToTriangleStrip_29();
135   public void SetCellTypeToTriangleStrip()
136     { SetCellTypeToTriangleStrip_29(); }
137
138   private native void SetCellTypeToPolygon_30();
139   public void SetCellTypeToPolygon()
140     { SetCellTypeToPolygon_30(); }
141
142   private native void SetCellTypeToPixel_31();
143   public void SetCellTypeToPixel()
144     { SetCellTypeToPixel_31(); }
145
146   private native void SetCellTypeToQuad_32();
147   public void SetCellTypeToQuad()
148     { SetCellTypeToQuad_32(); }
149
150   private native void SetCellTypeToTetra_33();
151   public void SetCellTypeToTetra()
152     { SetCellTypeToTetra_33(); }
153
154   private native void SetCellTypeToVoxel_34();
155   public void SetCellTypeToVoxel()
156     { SetCellTypeToVoxel_34(); }
157
158   private native void SetCellTypeToHexahedron_35();
159   public void SetCellTypeToHexahedron()
160     { SetCellTypeToHexahedron_35(); }
161
162   private native void SetCellTypeToWedge_36();
163   public void SetCellTypeToWedge()
164     { SetCellTypeToWedge_36(); }
165
166   private native void SetCellTypeToPyramid_37();
167   public void SetCellTypeToPyramid()
168     { SetCellTypeToPyramid_37(); }
169
170   private native void SetCellTypeToPentagonalPrism_38();
171   public void SetCellTypeToPentagonalPrism()
172     { SetCellTypeToPentagonalPrism_38(); }
173
174   private native void SetCellTypeToHexagonalPrism_39();
175   public void SetCellTypeToHexagonalPrism()
176     { SetCellTypeToHexagonalPrism_39(); }
177
178   private native void SetCellTypeToPolyhedron_40();
179   public void SetCellTypeToPolyhedron()
180     { SetCellTypeToPolyhedron_40(); }
181
182   private native void SetCellTypeToConvexPointSet_41();
183   public void SetCellTypeToConvexPointSet()
184     { SetCellTypeToConvexPointSet_41(); }
185
186   private native void SetCellTypeToQuadraticEdge_42();
187   public void SetCellTypeToQuadraticEdge()
188     { SetCellTypeToQuadraticEdge_42(); }
189
190   private native void SetCellTypeToCubicLine_43();
191   public void SetCellTypeToCubicLine()
192     { SetCellTypeToCubicLine_43(); }
193
194   private native void SetCellTypeToQuadraticTriangle_44();
195   public void SetCellTypeToQuadraticTriangle()
196     { SetCellTypeToQuadraticTriangle_44(); }
197
198   private native void SetCellTypeToBiQuadraticTriangle_45();
199   public void SetCellTypeToBiQuadraticTriangle()
200     { SetCellTypeToBiQuadraticTriangle_45(); }
201
202   private native void SetCellTypeToQuadraticQuad_46();
203   public void SetCellTypeToQuadraticQuad()
204     { SetCellTypeToQuadraticQuad_46(); }
205
206   private native void SetCellTypeToQuadraticPolygon_47();
207   public void SetCellTypeToQuadraticPolygon()
208     { SetCellTypeToQuadraticPolygon_47(); }
209
210   private native void SetCellTypeToQuadraticTetra_48();
211   public void SetCellTypeToQuadraticTetra()
212     { SetCellTypeToQuadraticTetra_48(); }
213
214   private native void SetCellTypeToQuadraticHexahedron_49();
215   public void SetCellTypeToQuadraticHexahedron()
216     { SetCellTypeToQuadraticHexahedron_49(); }
217
218   private native void SetCellTypeToQuadraticWedge_50();
219   public void SetCellTypeToQuadraticWedge()
220     { SetCellTypeToQuadraticWedge_50(); }
221
222   private native void SetCellTypeToQuadraticPyramid_51();
223   public void SetCellTypeToQuadraticPyramid()
224     { SetCellTypeToQuadraticPyramid_51(); }
225
226   private native void SetCellTypeToQuadraticLinearQuad_52();
227   public void SetCellTypeToQuadraticLinearQuad()
228     { SetCellTypeToQuadraticLinearQuad_52(); }
229
230   private native void SetCellTypeToBiQuadraticQuad_53();
231   public void SetCellTypeToBiQuadraticQuad()
232     { SetCellTypeToBiQuadraticQuad_53(); }
233
234   private native void SetCellTypeToQuadraticLinearWedge_54();
235   public void SetCellTypeToQuadraticLinearWedge()
236     { SetCellTypeToQuadraticLinearWedge_54(); }
237
238   private native void SetCellTypeToBiQuadraticQuadraticWedge_55();
239   public void SetCellTypeToBiQuadraticQuadraticWedge()
240     { SetCellTypeToBiQuadraticQuadraticWedge_55(); }
241
242   private native void SetCellTypeToTriQuadraticHexahedron_56();
243   public void SetCellTypeToTriQuadraticHexahedron()
244     { SetCellTypeToTriQuadraticHexahedron_56(); }
245
246   private native void SetCellTypeToBiQuadraticQuadraticHexahedron_57();
247   public void SetCellTypeToBiQuadraticQuadraticHexahedron()
248     { SetCellTypeToBiQuadraticQuadraticHexahedron_57(); }
249
250   private native void SetCellTypeToLagrangeTriangle_58();
251   public void SetCellTypeToLagrangeTriangle()
252     { SetCellTypeToLagrangeTriangle_58(); }
253
254   private native void SetCellTypeToLagrangeTetra_59();
255   public void SetCellTypeToLagrangeTetra()
256     { SetCellTypeToLagrangeTetra_59(); }
257
258   private native void SetCellTypeToLagrangeCurve_60();
259   public void SetCellTypeToLagrangeCurve()
260     { SetCellTypeToLagrangeCurve_60(); }
261
262   private native void SetCellTypeToLagrangeQuadrilateral_61();
263   public void SetCellTypeToLagrangeQuadrilateral()
264     { SetCellTypeToLagrangeQuadrilateral_61(); }
265
266   private native void SetCellTypeToLagrangeHexahedron_62();
267   public void SetCellTypeToLagrangeHexahedron()
268     { SetCellTypeToLagrangeHexahedron_62(); }
269
270   private native void SetCellTypeToLagrangeWedge_63();
271   public void SetCellTypeToLagrangeWedge()
272     { SetCellTypeToLagrangeWedge_63(); }
273
274   private native long InstantiateCell_64(int id0);
275   public vtkCell InstantiateCell(int id0) {
276     long temp = InstantiateCell_64(id0);
277
278     if (temp == 0) return null;
279     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
280 }
281
282   private native long GetRepresentativeCell_65();
283   public vtkCell GetRepresentativeCell() {
284     long temp = GetRepresentativeCell_65();
285
286     if (temp == 0) return null;
287     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
288 }
289
290   public vtkGenericCell() { super(); }
291
292   public vtkGenericCell(long id) { super(id); }
293   public native long   VTKInit();
294
295 }