]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSelectEnclosedPoints.java
Fix PNG loading
[simantics/3d.git] / vtk / src / vtk / vtkSelectEnclosedPoints.java
1 // java wrapper for vtkSelectEnclosedPoints object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSelectEnclosedPoints extends vtkDataSetAlgorithm
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 SetInsideOut_6(int id0);
43   public void SetInsideOut(int id0)
44     { SetInsideOut_6(id0); }
45
46   private native void InsideOutOn_7();
47   public void InsideOutOn()
48     { InsideOutOn_7(); }
49
50   private native void InsideOutOff_8();
51   public void InsideOutOff()
52     { InsideOutOff_8(); }
53
54   private native int GetInsideOut_9();
55   public int GetInsideOut()
56     { return GetInsideOut_9(); }
57
58   private native void SetCheckSurface_10(int id0);
59   public void SetCheckSurface(int id0)
60     { SetCheckSurface_10(id0); }
61
62   private native void CheckSurfaceOn_11();
63   public void CheckSurfaceOn()
64     { CheckSurfaceOn_11(); }
65
66   private native void CheckSurfaceOff_12();
67   public void CheckSurfaceOff()
68     { CheckSurfaceOff_12(); }
69
70   private native int GetCheckSurface_13();
71   public int GetCheckSurface()
72     { return GetCheckSurface_13(); }
73
74   private native int IsInside_14(int id0);
75   public int IsInside(int id0)
76     { return IsInside_14(id0); }
77
78   private native void SetTolerance_15(double id0);
79   public void SetTolerance(double id0)
80     { SetTolerance_15(id0); }
81
82   private native double GetToleranceMinValue_16();
83   public double GetToleranceMinValue()
84     { return GetToleranceMinValue_16(); }
85
86   private native double GetToleranceMaxValue_17();
87   public double GetToleranceMaxValue()
88     { return GetToleranceMaxValue_17(); }
89
90   private native double GetTolerance_18();
91   public double GetTolerance()
92     { return GetTolerance_18(); }
93
94   private native void Initialize_19(vtkPolyData id0);
95   public void Initialize(vtkPolyData id0)
96     { Initialize_19(id0); }
97
98   private native int IsInsideSurface_20(double id0[]);
99   public int IsInsideSurface(double id0[])
100     { return IsInsideSurface_20(id0); }
101
102   private native int IsInsideSurface_21(double id0,double id1,double id2);
103   public int IsInsideSurface(double id0,double id1,double id2)
104     { return IsInsideSurface_21(id0,id1,id2); }
105
106   private native void Complete_22();
107   public void Complete()
108     { Complete_22(); }
109
110   private native int IsSurfaceClosed_23(vtkPolyData id0);
111   public int IsSurfaceClosed(vtkPolyData id0)
112     { return IsSurfaceClosed_23(id0); }
113
114   public vtkSelectEnclosedPoints() { super(); }
115
116   public vtkSelectEnclosedPoints(long id) { super(id); }
117   public native long   VTKInit();
118
119 }