]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkLineSource.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkLineSource.java
1 // java wrapper for vtkLineSource object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkLineSource 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 SetPoint1_2(double id0,double id1,double id2);
19   public void SetPoint1(double id0,double id1,double id2)
20     { SetPoint1_2(id0,id1,id2); }
21
22   private native void SetPoint1_3(double id0[]);
23   public void SetPoint1(double id0[])
24     { SetPoint1_3(id0); }
25
26   private native double[] GetPoint1_4();
27   public double[] GetPoint1()
28     { return GetPoint1_4(); }
29
30   private native void SetPoint2_5(double id0,double id1,double id2);
31   public void SetPoint2(double id0,double id1,double id2)
32     { SetPoint2_5(id0,id1,id2); }
33
34   private native void SetPoint2_6(double id0[]);
35   public void SetPoint2(double id0[])
36     { SetPoint2_6(id0); }
37
38   private native double[] GetPoint2_7();
39   public double[] GetPoint2()
40     { return GetPoint2_7(); }
41
42   private native void SetPoints_8(vtkPoints id0);
43   public void SetPoints(vtkPoints id0)
44     { SetPoints_8(id0); }
45
46   private native long GetPoints_9();
47   public vtkPoints GetPoints() {
48     long temp = GetPoints_9();
49
50     if (temp == 0) return null;
51     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void SetResolution_10(int id0);
55   public void SetResolution(int id0)
56     { SetResolution_10(id0); }
57
58   private native int GetResolutionMinValue_11();
59   public int GetResolutionMinValue()
60     { return GetResolutionMinValue_11(); }
61
62   private native int GetResolutionMaxValue_12();
63   public int GetResolutionMaxValue()
64     { return GetResolutionMaxValue_12(); }
65
66   private native int GetResolution_13();
67   public int GetResolution()
68     { return GetResolution_13(); }
69
70   private native void SetOutputPointsPrecision_14(int id0);
71   public void SetOutputPointsPrecision(int id0)
72     { SetOutputPointsPrecision_14(id0); }
73
74   private native int GetOutputPointsPrecision_15();
75   public int GetOutputPointsPrecision()
76     { return GetOutputPointsPrecision_15(); }
77
78   public vtkLineSource() { super(); }
79
80   public vtkLineSource(long id) { super(id); }
81   public native long   VTKInit();
82
83 }