]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkLocator.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkLocator.java
1 // java wrapper for vtkLocator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkLocator 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 SetDataSet_2(vtkDataSet id0);
19   public void SetDataSet(vtkDataSet id0)
20     { SetDataSet_2(id0); }
21
22   private native long GetDataSet_3();
23   public vtkDataSet GetDataSet() {
24     long temp = GetDataSet_3();
25
26     if (temp == 0) return null;
27     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void SetMaxLevel_4(int id0);
31   public void SetMaxLevel(int id0)
32     { SetMaxLevel_4(id0); }
33
34   private native int GetMaxLevelMinValue_5();
35   public int GetMaxLevelMinValue()
36     { return GetMaxLevelMinValue_5(); }
37
38   private native int GetMaxLevelMaxValue_6();
39   public int GetMaxLevelMaxValue()
40     { return GetMaxLevelMaxValue_6(); }
41
42   private native int GetMaxLevel_7();
43   public int GetMaxLevel()
44     { return GetMaxLevel_7(); }
45
46   private native int GetLevel_8();
47   public int GetLevel()
48     { return GetLevel_8(); }
49
50   private native void SetAutomatic_9(int id0);
51   public void SetAutomatic(int id0)
52     { SetAutomatic_9(id0); }
53
54   private native int GetAutomatic_10();
55   public int GetAutomatic()
56     { return GetAutomatic_10(); }
57
58   private native void AutomaticOn_11();
59   public void AutomaticOn()
60     { AutomaticOn_11(); }
61
62   private native void AutomaticOff_12();
63   public void AutomaticOff()
64     { AutomaticOff_12(); }
65
66   private native void SetTolerance_13(double id0);
67   public void SetTolerance(double id0)
68     { SetTolerance_13(id0); }
69
70   private native double GetToleranceMinValue_14();
71   public double GetToleranceMinValue()
72     { return GetToleranceMinValue_14(); }
73
74   private native double GetToleranceMaxValue_15();
75   public double GetToleranceMaxValue()
76     { return GetToleranceMaxValue_15(); }
77
78   private native double GetTolerance_16();
79   public double GetTolerance()
80     { return GetTolerance_16(); }
81
82   private native void Update_17();
83   public void Update()
84     { Update_17(); }
85
86   private native void Initialize_18();
87   public void Initialize()
88     { Initialize_18(); }
89
90   private native void BuildLocator_19();
91   public void BuildLocator()
92     { BuildLocator_19(); }
93
94   private native void FreeSearchStructure_20();
95   public void FreeSearchStructure()
96     { FreeSearchStructure_20(); }
97
98   private native void GenerateRepresentation_21(int id0,vtkPolyData id1);
99   public void GenerateRepresentation(int id0,vtkPolyData id1)
100     { GenerateRepresentation_21(id0,id1); }
101
102   private native int GetBuildTime_22();
103   public int GetBuildTime()
104     { return GetBuildTime_22(); }
105
106   private native void Register_23(vtkObjectBase id0);
107   public void Register(vtkObjectBase id0)
108     { Register_23(id0); }
109
110   private native void UnRegister_24(vtkObjectBase id0);
111   public void UnRegister(vtkObjectBase id0)
112     { UnRegister_24(id0); }
113
114   public vtkLocator() { super(); }
115
116   public vtkLocator(long id) { super(id); }
117
118 }