]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkCellIterator.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkCellIterator.java
1 // java wrapper for vtkCellIterator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkCellIterator extends vtkObject
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 InitTraversal_2();
19   public void InitTraversal()
20     { InitTraversal_2(); }
21
22   private native void GoToNextCell_3();
23   public void GoToNextCell()
24     { GoToNextCell_3(); }
25
26   private native boolean IsDoneWithTraversal_4();
27   public boolean IsDoneWithTraversal()
28     { return IsDoneWithTraversal_4(); }
29
30   private native int GetCellType_5();
31   public int GetCellType()
32     { return GetCellType_5(); }
33
34   private native int GetCellDimension_6();
35   public int GetCellDimension()
36     { return GetCellDimension_6(); }
37
38   private native int GetCellId_7();
39   public int GetCellId()
40     { return GetCellId_7(); }
41
42   private native long GetPointIds_8();
43   public vtkIdList GetPointIds() {
44     long temp = GetPointIds_8();
45
46     if (temp == 0) return null;
47     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetPoints_9();
51   public vtkPoints GetPoints() {
52     long temp = GetPoints_9();
53
54     if (temp == 0) return null;
55     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native long GetFaces_10();
59   public vtkIdList GetFaces() {
60     long temp = GetFaces_10();
61
62     if (temp == 0) return null;
63     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   private native void GetCell_11(vtkGenericCell id0);
67   public void GetCell(vtkGenericCell id0)
68     { GetCell_11(id0); }
69
70   private native int GetNumberOfPoints_12();
71   public int GetNumberOfPoints()
72     { return GetNumberOfPoints_12(); }
73
74   private native int GetNumberOfFaces_13();
75   public int GetNumberOfFaces()
76     { return GetNumberOfFaces_13(); }
77
78   public vtkCellIterator() { super(); }
79
80   public vtkCellIterator(long id) { super(id); }
81
82 }