]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkFitToHeightMapFilter.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkFitToHeightMapFilter.java
1 // java wrapper for vtkFitToHeightMapFilter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkFitToHeightMapFilter 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 SetHeightMapData_2(vtkImageData id0);
19   public void SetHeightMapData(vtkImageData id0)
20     { SetHeightMapData_2(id0); }
21
22   private native void SetHeightMapConnection_3(vtkAlgorithmOutput id0);
23   public void SetHeightMapConnection(vtkAlgorithmOutput id0)
24     { SetHeightMapConnection_3(id0); }
25
26   private native long GetHeightMap_4();
27   public vtkImageData GetHeightMap() {
28     long temp = GetHeightMap_4();
29
30     if (temp == 0) return null;
31     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetHeightMap_5(vtkInformationVector id0);
35   public vtkImageData GetHeightMap(vtkInformationVector id0) {
36     long temp = GetHeightMap_5(id0);
37
38     if (temp == 0) return null;
39     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetFittingStrategy_6(int id0);
43   public void SetFittingStrategy(int id0)
44     { SetFittingStrategy_6(id0); }
45
46   private native int GetFittingStrategy_7();
47   public int GetFittingStrategy()
48     { return GetFittingStrategy_7(); }
49
50   private native void SetFittingStrategyToPointProjection_8();
51   public void SetFittingStrategyToPointProjection()
52     { SetFittingStrategyToPointProjection_8(); }
53
54   private native void SetFittingStrategyToPointMinimumHeight_9();
55   public void SetFittingStrategyToPointMinimumHeight()
56     { SetFittingStrategyToPointMinimumHeight_9(); }
57
58   private native void SetFittingStrategyToPointMaximumHeight_10();
59   public void SetFittingStrategyToPointMaximumHeight()
60     { SetFittingStrategyToPointMaximumHeight_10(); }
61
62   private native void SetFittingStrategyToAverageHeight_11();
63   public void SetFittingStrategyToAverageHeight()
64     { SetFittingStrategyToAverageHeight_11(); }
65
66   private native void SetFittingStrategyToCellMinimumHeight_12();
67   public void SetFittingStrategyToCellMinimumHeight()
68     { SetFittingStrategyToCellMinimumHeight_12(); }
69
70   private native void SetFittingStrategyToCellMaximumHeight_13();
71   public void SetFittingStrategyToCellMaximumHeight()
72     { SetFittingStrategyToCellMaximumHeight_13(); }
73
74   private native void SetFittingStrategyToCellAverageHeight_14();
75   public void SetFittingStrategyToCellAverageHeight()
76     { SetFittingStrategyToCellAverageHeight_14(); }
77
78   private native void SetUseHeightMapOffset_15(int id0);
79   public void SetUseHeightMapOffset(int id0)
80     { SetUseHeightMapOffset_15(id0); }
81
82   private native int GetUseHeightMapOffset_16();
83   public int GetUseHeightMapOffset()
84     { return GetUseHeightMapOffset_16(); }
85
86   private native void UseHeightMapOffsetOn_17();
87   public void UseHeightMapOffsetOn()
88     { UseHeightMapOffsetOn_17(); }
89
90   private native void UseHeightMapOffsetOff_18();
91   public void UseHeightMapOffsetOff()
92     { UseHeightMapOffsetOff_18(); }
93
94   public vtkFitToHeightMapFilter() { super(); }
95
96   public vtkFitToHeightMapFilter(long id) { super(id); }
97   public native long   VTKInit();
98
99 }