]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkCoincidentPoints.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkCoincidentPoints.java
1 // java wrapper for vtkCoincidentPoints object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkCoincidentPoints extends vtkObject
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 AddPoint_2(int id0,double id1[]);
19   public void AddPoint(int id0,double id1[])
20     { AddPoint_2(id0,id1); }
21
22   private native long GetCoincidentPointIds_3(double id0[]);
23   public vtkIdList GetCoincidentPointIds(double id0[]) {
24     long temp = GetCoincidentPointIds_3(id0);
25
26     if (temp == 0) return null;
27     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native long GetNextCoincidentPointIds_4();
31   public vtkIdList GetNextCoincidentPointIds() {
32     long temp = GetNextCoincidentPointIds_4();
33
34     if (temp == 0) return null;
35     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native void InitTraversal_5();
39   public void InitTraversal()
40     { InitTraversal_5(); }
41
42   private native void RemoveNonCoincidentPoints_6();
43   public void RemoveNonCoincidentPoints()
44     { RemoveNonCoincidentPoints_6(); }
45
46   private native void Clear_7();
47   public void Clear()
48     { Clear_7(); }
49
50   private native void SpiralPoints_8(int id0,vtkPoints id1);
51   public void SpiralPoints(int id0,vtkPoints id1)
52     { SpiralPoints_8(id0,id1); }
53
54   public vtkCoincidentPoints() { super(); }
55
56   public vtkCoincidentPoints(long id) { super(id); }
57   public native long   VTKInit();
58
59 }