]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAppendFilter.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkAppendFilter.java
1 // java wrapper for vtkAppendFilter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAppendFilter extends vtkUnstructuredGridAlgorithm
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 long GetInput_2(int id0);
19   public vtkDataSet GetInput(int id0) {
20     long temp = GetInput_2(id0);
21
22     if (temp == 0) return null;
23     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetInput_3();
27   public vtkDataSet GetInput() {
28     long temp = GetInput_3();
29
30     if (temp == 0) return null;
31     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native int GetMergePoints_4();
35   public int GetMergePoints()
36     { return GetMergePoints_4(); }
37
38   private native void SetMergePoints_5(int id0);
39   public void SetMergePoints(int id0)
40     { SetMergePoints_5(id0); }
41
42   private native void MergePointsOn_6();
43   public void MergePointsOn()
44     { MergePointsOn_6(); }
45
46   private native void MergePointsOff_7();
47   public void MergePointsOff()
48     { MergePointsOff_7(); }
49
50   private native void RemoveInputData_8(vtkDataSet id0);
51   public void RemoveInputData(vtkDataSet id0)
52     { RemoveInputData_8(id0); }
53
54   private native long GetInputList_9();
55   public vtkDataSetCollection GetInputList() {
56     long temp = GetInputList_9();
57
58     if (temp == 0) return null;
59     return (vtkDataSetCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void SetOutputPointsPrecision_10(int id0);
63   public void SetOutputPointsPrecision(int id0)
64     { SetOutputPointsPrecision_10(id0); }
65
66   private native int GetOutputPointsPrecisionMinValue_11();
67   public int GetOutputPointsPrecisionMinValue()
68     { return GetOutputPointsPrecisionMinValue_11(); }
69
70   private native int GetOutputPointsPrecisionMaxValue_12();
71   public int GetOutputPointsPrecisionMaxValue()
72     { return GetOutputPointsPrecisionMaxValue_12(); }
73
74   private native int GetOutputPointsPrecision_13();
75   public int GetOutputPointsPrecision()
76     { return GetOutputPointsPrecision_13(); }
77
78   public vtkAppendFilter() { super(); }
79
80   public vtkAppendFilter(long id) { super(id); }
81   public native long   VTKInit();
82
83 }