]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPolyLineSource.java
Equipment/Component library customization
[simantics/3d.git] / vtk / src / vtk / vtkPolyLineSource.java
1 // java wrapper for vtkPolyLineSource object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPolyLineSource 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 SetNumberOfPoints_2(int id0);
19   public void SetNumberOfPoints(int id0)
20     { SetNumberOfPoints_2(id0); }
21
22   private native int GetNumberOfPoints_3();
23   public int GetNumberOfPoints()
24     { return GetNumberOfPoints_3(); }
25
26   private native void Resize_4(int id0);
27   public void Resize(int id0)
28     { Resize_4(id0); }
29
30   private native void SetPoint_5(int id0,double id1,double id2,double id3);
31   public void SetPoint(int id0,double id1,double id2,double id3)
32     { SetPoint_5(id0,id1,id2,id3); }
33
34   private native void SetPoints_6(vtkPoints id0);
35   public void SetPoints(vtkPoints id0)
36     { SetPoints_6(id0); }
37
38   private native long GetPoints_7();
39   public vtkPoints GetPoints() {
40     long temp = GetPoints_7();
41
42     if (temp == 0) return null;
43     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native void SetClosed_8(int id0);
47   public void SetClosed(int id0)
48     { SetClosed_8(id0); }
49
50   private native int GetClosed_9();
51   public int GetClosed()
52     { return GetClosed_9(); }
53
54   private native void ClosedOn_10();
55   public void ClosedOn()
56     { ClosedOn_10(); }
57
58   private native void ClosedOff_11();
59   public void ClosedOff()
60     { ClosedOff_11(); }
61
62   public vtkPolyLineSource() { super(); }
63
64   public vtkPolyLineSource(long id) { super(id); }
65   public native long   VTKInit();
66
67 }