]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSelectPolyData.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkSelectPolyData.java
1 // java wrapper for vtkSelectPolyData object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSelectPolyData extends vtkPolyDataAlgorithm
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 SetGenerateSelectionScalars_2(int id0);
19   public void SetGenerateSelectionScalars(int id0)
20     { SetGenerateSelectionScalars_2(id0); }
21
22   private native int GetGenerateSelectionScalars_3();
23   public int GetGenerateSelectionScalars()
24     { return GetGenerateSelectionScalars_3(); }
25
26   private native void GenerateSelectionScalarsOn_4();
27   public void GenerateSelectionScalarsOn()
28     { GenerateSelectionScalarsOn_4(); }
29
30   private native void GenerateSelectionScalarsOff_5();
31   public void GenerateSelectionScalarsOff()
32     { GenerateSelectionScalarsOff_5(); }
33
34   private native void SetInsideOut_6(int id0);
35   public void SetInsideOut(int id0)
36     { SetInsideOut_6(id0); }
37
38   private native int GetInsideOut_7();
39   public int GetInsideOut()
40     { return GetInsideOut_7(); }
41
42   private native void InsideOutOn_8();
43   public void InsideOutOn()
44     { InsideOutOn_8(); }
45
46   private native void InsideOutOff_9();
47   public void InsideOutOff()
48     { InsideOutOff_9(); }
49
50   private native void SetLoop_10(vtkPoints id0);
51   public void SetLoop(vtkPoints id0)
52     { SetLoop_10(id0); }
53
54   private native long GetLoop_11();
55   public vtkPoints GetLoop() {
56     long temp = GetLoop_11();
57
58     if (temp == 0) return null;
59     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void SetClosestPoint_12(double id0,double id1,double id2);
63   public void SetClosestPoint(double id0,double id1,double id2)
64     { SetClosestPoint_12(id0,id1,id2); }
65
66   private native void SetClosestPoint_13(double id0[]);
67   public void SetClosestPoint(double id0[])
68     { SetClosestPoint_13(id0); }
69
70   private native double[] GetClosestPoint_14();
71   public double[] GetClosestPoint()
72     { return GetClosestPoint_14(); }
73
74   private native void SetSelectionMode_15(int id0);
75   public void SetSelectionMode(int id0)
76     { SetSelectionMode_15(id0); }
77
78   private native int GetSelectionModeMinValue_16();
79   public int GetSelectionModeMinValue()
80     { return GetSelectionModeMinValue_16(); }
81
82   private native int GetSelectionModeMaxValue_17();
83   public int GetSelectionModeMaxValue()
84     { return GetSelectionModeMaxValue_17(); }
85
86   private native int GetSelectionMode_18();
87   public int GetSelectionMode()
88     { return GetSelectionMode_18(); }
89
90   private native void SetSelectionModeToSmallestRegion_19();
91   public void SetSelectionModeToSmallestRegion()
92     { SetSelectionModeToSmallestRegion_19(); }
93
94   private native void SetSelectionModeToLargestRegion_20();
95   public void SetSelectionModeToLargestRegion()
96     { SetSelectionModeToLargestRegion_20(); }
97
98   private native void SetSelectionModeToClosestPointRegion_21();
99   public void SetSelectionModeToClosestPointRegion()
100     { SetSelectionModeToClosestPointRegion_21(); }
101
102   private native String GetSelectionModeAsString_22();
103   public String GetSelectionModeAsString()
104     { return GetSelectionModeAsString_22(); }
105
106   private native void SetGenerateUnselectedOutput_23(int id0);
107   public void SetGenerateUnselectedOutput(int id0)
108     { SetGenerateUnselectedOutput_23(id0); }
109
110   private native int GetGenerateUnselectedOutput_24();
111   public int GetGenerateUnselectedOutput()
112     { return GetGenerateUnselectedOutput_24(); }
113
114   private native void GenerateUnselectedOutputOn_25();
115   public void GenerateUnselectedOutputOn()
116     { GenerateUnselectedOutputOn_25(); }
117
118   private native void GenerateUnselectedOutputOff_26();
119   public void GenerateUnselectedOutputOff()
120     { GenerateUnselectedOutputOff_26(); }
121
122   private native long GetUnselectedOutput_27();
123   public vtkPolyData GetUnselectedOutput() {
124     long temp = GetUnselectedOutput_27();
125
126     if (temp == 0) return null;
127     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
128 }
129
130   private native long GetSelectionEdges_28();
131   public vtkPolyData GetSelectionEdges() {
132     long temp = GetSelectionEdges_28();
133
134     if (temp == 0) return null;
135     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
136 }
137
138   private native int GetMTime_29();
139   public int GetMTime()
140     { return GetMTime_29(); }
141
142   public vtkSelectPolyData() { super(); }
143
144   public vtkSelectPolyData(long id) { super(id); }
145   public native long   VTKInit();
146
147 }