1 // java wrapper for vtkPolyLineSource object
7 public class vtkPolyLineSource extends vtkPolyDataAlgorithm
10 private native int IsTypeOf_0(String id0);
11 public int IsTypeOf(String id0)
12 { return IsTypeOf_0(id0); }
14 private native int IsA_1(String id0);
15 public int IsA(String id0)
16 { return IsA_1(id0); }
18 private native void SetNumberOfPoints_2(int id0);
19 public void SetNumberOfPoints(int id0)
20 { SetNumberOfPoints_2(id0); }
22 private native int GetNumberOfPoints_3();
23 public int GetNumberOfPoints()
24 { return GetNumberOfPoints_3(); }
26 private native void Resize_4(int id0);
27 public void Resize(int id0)
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); }
34 private native void SetPoints_6(vtkPoints id0);
35 public void SetPoints(vtkPoints id0)
38 private native long GetPoints_7();
39 public vtkPoints GetPoints() {
40 long temp = GetPoints_7();
42 if (temp == 0) return null;
43 return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
46 private native void SetClosed_8(int id0);
47 public void SetClosed(int id0)
50 private native int GetClosed_9();
51 public int GetClosed()
52 { return GetClosed_9(); }
54 private native void ClosedOn_10();
55 public void ClosedOn()
58 private native void ClosedOff_11();
59 public void ClosedOff()
62 public vtkPolyLineSource() { super(); }
64 public vtkPolyLineSource(long id) { super(id); }
65 public native long VTKInit();