]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGraphLayout.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkGraphLayout.java
1 // java wrapper for vtkGraphLayout object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGraphLayout extends vtkGraphAlgorithm
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 SetLayoutStrategy_2(vtkGraphLayoutStrategy id0);
19   public void SetLayoutStrategy(vtkGraphLayoutStrategy id0)
20     { SetLayoutStrategy_2(id0); }
21
22   private native long GetLayoutStrategy_3();
23   public vtkGraphLayoutStrategy GetLayoutStrategy() {
24     long temp = GetLayoutStrategy_3();
25
26     if (temp == 0) return null;
27     return (vtkGraphLayoutStrategy)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native int IsLayoutComplete_4();
31   public int IsLayoutComplete()
32     { return IsLayoutComplete_4(); }
33
34   private native int GetMTime_5();
35   public int GetMTime()
36     { return GetMTime_5(); }
37
38   private native double GetZRange_6();
39   public double GetZRange()
40     { return GetZRange_6(); }
41
42   private native void SetZRange_7(double id0);
43   public void SetZRange(double id0)
44     { SetZRange_7(id0); }
45
46   private native long GetTransform_8();
47   public vtkAbstractTransform GetTransform() {
48     long temp = GetTransform_8();
49
50     if (temp == 0) return null;
51     return (vtkAbstractTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void SetTransform_9(vtkAbstractTransform id0);
55   public void SetTransform(vtkAbstractTransform id0)
56     { SetTransform_9(id0); }
57
58   private native void SetUseTransform_10(boolean id0);
59   public void SetUseTransform(boolean id0)
60     { SetUseTransform_10(id0); }
61
62   private native boolean GetUseTransform_11();
63   public boolean GetUseTransform()
64     { return GetUseTransform_11(); }
65
66   private native void UseTransformOn_12();
67   public void UseTransformOn()
68     { UseTransformOn_12(); }
69
70   private native void UseTransformOff_13();
71   public void UseTransformOff()
72     { UseTransformOff_13(); }
73
74   public vtkGraphLayout() { super(); }
75
76   public vtkGraphLayout(long id) { super(id); }
77   public native long   VTKInit();
78
79 }