]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkHyperTree.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkHyperTree.java
1 // java wrapper for vtkHyperTree object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkHyperTree 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 Initialize_2();
19   public void Initialize()
20     { Initialize_2(); }
21
22   private native int GetNumberOfLevels_3();
23   public int GetNumberOfLevels()
24     { return GetNumberOfLevels_3(); }
25
26   private native int GetNumberOfVertices_4();
27   public int GetNumberOfVertices()
28     { return GetNumberOfVertices_4(); }
29
30   private native int GetNumberOfNodes_5();
31   public int GetNumberOfNodes()
32     { return GetNumberOfNodes_5(); }
33
34   private native int GetNumberOfLeaves_6();
35   public int GetNumberOfLeaves()
36     { return GetNumberOfLeaves_6(); }
37
38   private native int GetBranchFactor_7();
39   public int GetBranchFactor()
40     { return GetBranchFactor_7(); }
41
42   private native int GetDimension_8();
43   public int GetDimension()
44     { return GetDimension_8(); }
45
46   private native int GetNumberOfChildren_9();
47   public int GetNumberOfChildren()
48     { return GetNumberOfChildren_9(); }
49
50   private native void SetScale_10(double id0[]);
51   public void SetScale(double id0[])
52     { SetScale_10(id0); }
53
54   private native void GetScale_11(double id0[]);
55   public void GetScale(double id0[])
56     { GetScale_11(id0); }
57
58   private native double GetScale_12(int id0);
59   public double GetScale(int id0)
60     { return GetScale_12(id0); }
61
62   private native long CreateInstance_13(int id0,int id1);
63   public vtkHyperTree CreateInstance(int id0,int id1) {
64     long temp = CreateInstance_13(id0,id1);
65
66     if (temp == 0) return null;
67     return (vtkHyperTree)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native long NewCursor_14();
71   public vtkHyperTreeCursor NewCursor() {
72     long temp = NewCursor_14();
73
74     if (temp == 0) return null;
75     return (vtkHyperTreeCursor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native void SubdivideLeaf_15(vtkHyperTreeCursor id0);
79   public void SubdivideLeaf(vtkHyperTreeCursor id0)
80     { SubdivideLeaf_15(id0); }
81
82   private native int GetActualMemorySize_16();
83   public int GetActualMemorySize()
84     { return GetActualMemorySize_16(); }
85
86   private native void SetGlobalIndexStart_17(int id0);
87   public void SetGlobalIndexStart(int id0)
88     { SetGlobalIndexStart_17(id0); }
89
90   private native void SetGlobalIndexFromLocal_18(int id0,int id1);
91   public void SetGlobalIndexFromLocal(int id0,int id1)
92     { SetGlobalIndexFromLocal_18(id0,id1); }
93
94   private native int GetGlobalIndexFromLocal_19(int id0);
95   public int GetGlobalIndexFromLocal(int id0)
96     { return GetGlobalIndexFromLocal_19(id0); }
97
98   public vtkHyperTree() { super(); }
99
100   public vtkHyperTree(long id) { super(id); }
101
102 }