]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkExtractEnclosedPoints.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkExtractEnclosedPoints.java
1 // java wrapper for vtkExtractEnclosedPoints object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkExtractEnclosedPoints extends vtkPointCloudFilter
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 SetSurfaceData_2(vtkPolyData id0);
19   public void SetSurfaceData(vtkPolyData id0)
20     { SetSurfaceData_2(id0); }
21
22   private native void SetSurfaceConnection_3(vtkAlgorithmOutput id0);
23   public void SetSurfaceConnection(vtkAlgorithmOutput id0)
24     { SetSurfaceConnection_3(id0); }
25
26   private native long GetSurface_4();
27   public vtkPolyData GetSurface() {
28     long temp = GetSurface_4();
29
30     if (temp == 0) return null;
31     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetSurface_5(vtkInformationVector id0);
35   public vtkPolyData GetSurface(vtkInformationVector id0) {
36     long temp = GetSurface_5(id0);
37
38     if (temp == 0) return null;
39     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetCheckSurface_6(int id0);
43   public void SetCheckSurface(int id0)
44     { SetCheckSurface_6(id0); }
45
46   private native void CheckSurfaceOn_7();
47   public void CheckSurfaceOn()
48     { CheckSurfaceOn_7(); }
49
50   private native void CheckSurfaceOff_8();
51   public void CheckSurfaceOff()
52     { CheckSurfaceOff_8(); }
53
54   private native int GetCheckSurface_9();
55   public int GetCheckSurface()
56     { return GetCheckSurface_9(); }
57
58   private native void SetTolerance_10(double id0);
59   public void SetTolerance(double id0)
60     { SetTolerance_10(id0); }
61
62   private native double GetToleranceMinValue_11();
63   public double GetToleranceMinValue()
64     { return GetToleranceMinValue_11(); }
65
66   private native double GetToleranceMaxValue_12();
67   public double GetToleranceMaxValue()
68     { return GetToleranceMaxValue_12(); }
69
70   private native double GetTolerance_13();
71   public double GetTolerance()
72     { return GetTolerance_13(); }
73
74   public vtkExtractEnclosedPoints() { super(); }
75
76   public vtkExtractEnclosedPoints(long id) { super(id); }
77   public native long   VTKInit();
78
79 }