]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGenericCellIterator.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkGenericCellIterator.java
1 // java wrapper for vtkGenericCellIterator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGenericCellIterator 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 Begin_2();
19   public void Begin()
20     { Begin_2(); }
21
22   private native int IsAtEnd_3();
23   public int IsAtEnd()
24     { return IsAtEnd_3(); }
25
26   private native long NewCell_4();
27   public vtkGenericAdaptorCell NewCell() {
28     long temp = NewCell_4();
29
30     if (temp == 0) return null;
31     return (vtkGenericAdaptorCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void GetCell_5(vtkGenericAdaptorCell id0);
35   public void GetCell(vtkGenericAdaptorCell id0)
36     { GetCell_5(id0); }
37
38   private native long GetCell_6();
39   public vtkGenericAdaptorCell GetCell() {
40     long temp = GetCell_6();
41
42     if (temp == 0) return null;
43     return (vtkGenericAdaptorCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native void Next_7();
47   public void Next()
48     { Next_7(); }
49
50   public vtkGenericCellIterator() { super(); }
51
52   public vtkGenericCellIterator(long id) { super(id); }
53
54 }