]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkHyperTreeGridCursor.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkHyperTreeGridCursor.java
1 // java wrapper for vtkHyperTreeGridCursor object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkHyperTreeGridCursor extends vtkHyperTreeCursor
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 long Clone_2();
19   public vtkHyperTreeGridCursor Clone() {
20     long temp = Clone_2();
21
22     if (temp == 0) return null;
23     return (vtkHyperTreeGridCursor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native void Initialize_3(vtkHyperTreeGrid id0,int id1);
27   public void Initialize(vtkHyperTreeGrid id0,int id1)
28     { Initialize_3(id0,id1); }
29
30   private native void SetGrid_4(vtkHyperTreeGrid id0);
31   public void SetGrid(vtkHyperTreeGrid id0)
32     { SetGrid_4(id0); }
33
34   private native long GetGrid_5();
35   public vtkHyperTreeGrid GetGrid() {
36     long temp = GetGrid_5();
37
38     if (temp == 0) return null;
39     return (vtkHyperTreeGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetTree_6(vtkHyperTree id0);
43   public void SetTree(vtkHyperTree id0)
44     { SetTree_6(id0); }
45
46   private native long GetTree_7();
47   public vtkHyperTree GetTree() {
48     long temp = GetTree_7();
49
50     if (temp == 0) return null;
51     return (vtkHyperTree)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native int GetVertexId_8();
55   public int GetVertexId()
56     { return GetVertexId_8(); }
57
58   private native int GetGlobalNodeIndex_9();
59   public int GetGlobalNodeIndex()
60     { return GetGlobalNodeIndex_9(); }
61
62   private native boolean IsLeaf_10();
63   public boolean IsLeaf()
64     { return IsLeaf_10(); }
65
66   private native boolean IsRoot_11();
67   public boolean IsRoot()
68     { return IsRoot_11(); }
69
70   private native int GetLevel_12();
71   public int GetLevel()
72     { return GetLevel_12(); }
73
74   private native int GetChildIndex_13();
75   public int GetChildIndex()
76     { return GetChildIndex_13(); }
77
78   private native void ToRoot_14();
79   public void ToRoot()
80     { ToRoot_14(); }
81
82   private native void ToParent_15();
83   public void ToParent()
84     { ToParent_15(); }
85
86   private native void ToChild_16(int id0);
87   public void ToChild(int id0)
88     { ToChild_16(id0); }
89
90   private native void ToSameVertex_17(vtkHyperTreeCursor id0);
91   public void ToSameVertex(vtkHyperTreeCursor id0)
92     { ToSameVertex_17(id0); }
93
94   private native boolean IsEqual_18(vtkHyperTreeCursor id0);
95   public boolean IsEqual(vtkHyperTreeCursor id0)
96     { return IsEqual_18(id0); }
97
98   private native int SameTree_19(vtkHyperTreeCursor id0);
99   public int SameTree(vtkHyperTreeCursor id0)
100     { return SameTree_19(id0); }
101
102   private native int GetNumberOfChildren_20();
103   public int GetNumberOfChildren()
104     { return GetNumberOfChildren_20(); }
105
106   private native int GetDimension_21();
107   public int GetDimension()
108     { return GetDimension_21(); }
109
110   private native void GetBounds_22(double id0[]);
111   public void GetBounds(double id0[])
112     { GetBounds_22(id0); }
113
114   private native void GetPoint_23(double id0[]);
115   public void GetPoint(double id0[])
116     { GetPoint_23(id0); }
117
118   private native int GetNumberOfCursors_24();
119   public int GetNumberOfCursors()
120     { return GetNumberOfCursors_24(); }
121
122   private native long GetCursor_25(int id0);
123   public vtkHyperTreeGridCursor GetCursor(int id0) {
124     long temp = GetCursor_25(id0);
125
126     if (temp == 0) return null;
127     return (vtkHyperTreeGridCursor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
128 }
129
130   private native boolean GetCornerCursors_26(int id0,int id1,vtkIdList id2);
131   public boolean GetCornerCursors(int id0,int id1,vtkIdList id2)
132     { return GetCornerCursors_26(id0,id1,id2); }
133
134   public vtkHyperTreeGridCursor() { super(); }
135
136   public vtkHyperTreeGridCursor(long id) { super(id); }
137   public native long   VTKInit();
138
139 }