]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGenericCutter.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkGenericCutter.java
1 // java wrapper for vtkGenericCutter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGenericCutter 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 SetValue_2(int id0,double id1);
19   public void SetValue(int id0,double id1)
20     { SetValue_2(id0,id1); }
21
22   private native double GetValue_3(int id0);
23   public double GetValue(int id0)
24     { return GetValue_3(id0); }
25
26   private native void SetNumberOfContours_4(int id0);
27   public void SetNumberOfContours(int id0)
28     { SetNumberOfContours_4(id0); }
29
30   private native int GetNumberOfContours_5();
31   public int GetNumberOfContours()
32     { return GetNumberOfContours_5(); }
33
34   private native void GenerateValues_6(int id0,double id1[]);
35   public void GenerateValues(int id0,double id1[])
36     { GenerateValues_6(id0,id1); }
37
38   private native void GenerateValues_7(int id0,double id1,double id2);
39   public void GenerateValues(int id0,double id1,double id2)
40     { GenerateValues_7(id0,id1,id2); }
41
42   private native int GetMTime_8();
43   public int GetMTime()
44     { return GetMTime_8(); }
45
46   private native void SetCutFunction_9(vtkImplicitFunction id0);
47   public void SetCutFunction(vtkImplicitFunction id0)
48     { SetCutFunction_9(id0); }
49
50   private native long GetCutFunction_10();
51   public vtkImplicitFunction GetCutFunction() {
52     long temp = GetCutFunction_10();
53
54     if (temp == 0) return null;
55     return (vtkImplicitFunction)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native void SetGenerateCutScalars_11(int id0);
59   public void SetGenerateCutScalars(int id0)
60     { SetGenerateCutScalars_11(id0); }
61
62   private native int GetGenerateCutScalars_12();
63   public int GetGenerateCutScalars()
64     { return GetGenerateCutScalars_12(); }
65
66   private native void GenerateCutScalarsOn_13();
67   public void GenerateCutScalarsOn()
68     { GenerateCutScalarsOn_13(); }
69
70   private native void GenerateCutScalarsOff_14();
71   public void GenerateCutScalarsOff()
72     { GenerateCutScalarsOff_14(); }
73
74   private native void SetLocator_15(vtkIncrementalPointLocator id0);
75   public void SetLocator(vtkIncrementalPointLocator id0)
76     { SetLocator_15(id0); }
77
78   private native long GetLocator_16();
79   public vtkIncrementalPointLocator GetLocator() {
80     long temp = GetLocator_16();
81
82     if (temp == 0) return null;
83     return (vtkIncrementalPointLocator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
84 }
85
86   private native void CreateDefaultLocator_17();
87   public void CreateDefaultLocator()
88     { CreateDefaultLocator_17(); }
89
90   public vtkGenericCutter() { super(); }
91
92   public vtkGenericCutter(long id) { super(id); }
93   public native long   VTKInit();
94
95 }