]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPointSource.java
PipeRun reverse action
[simantics/3d.git] / vtk / src / vtk / vtkPointSource.java
1 // java wrapper for vtkPointSource object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPointSource 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 GetNumberOfPointsMinValue_3();
23   public int GetNumberOfPointsMinValue()
24     { return GetNumberOfPointsMinValue_3(); }
25
26   private native int GetNumberOfPointsMaxValue_4();
27   public int GetNumberOfPointsMaxValue()
28     { return GetNumberOfPointsMaxValue_4(); }
29
30   private native int GetNumberOfPoints_5();
31   public int GetNumberOfPoints()
32     { return GetNumberOfPoints_5(); }
33
34   private native void SetCenter_6(double id0,double id1,double id2);
35   public void SetCenter(double id0,double id1,double id2)
36     { SetCenter_6(id0,id1,id2); }
37
38   private native void SetCenter_7(double id0[]);
39   public void SetCenter(double id0[])
40     { SetCenter_7(id0); }
41
42   private native double[] GetCenter_8();
43   public double[] GetCenter()
44     { return GetCenter_8(); }
45
46   private native void SetRadius_9(double id0);
47   public void SetRadius(double id0)
48     { SetRadius_9(id0); }
49
50   private native double GetRadiusMinValue_10();
51   public double GetRadiusMinValue()
52     { return GetRadiusMinValue_10(); }
53
54   private native double GetRadiusMaxValue_11();
55   public double GetRadiusMaxValue()
56     { return GetRadiusMaxValue_11(); }
57
58   private native double GetRadius_12();
59   public double GetRadius()
60     { return GetRadius_12(); }
61
62   private native void SetDistribution_13(int id0);
63   public void SetDistribution(int id0)
64     { SetDistribution_13(id0); }
65
66   private native void SetDistributionToUniform_14();
67   public void SetDistributionToUniform()
68     { SetDistributionToUniform_14(); }
69
70   private native void SetDistributionToShell_15();
71   public void SetDistributionToShell()
72     { SetDistributionToShell_15(); }
73
74   private native int GetDistribution_16();
75   public int GetDistribution()
76     { return GetDistribution_16(); }
77
78   private native void SetOutputPointsPrecision_17(int id0);
79   public void SetOutputPointsPrecision(int id0)
80     { SetOutputPointsPrecision_17(id0); }
81
82   private native int GetOutputPointsPrecision_18();
83   public int GetOutputPointsPrecision()
84     { return GetOutputPointsPrecision_18(); }
85
86   private native void SetRandomSequence_19(vtkRandomSequence id0);
87   public void SetRandomSequence(vtkRandomSequence id0)
88     { SetRandomSequence_19(id0); }
89
90   private native long GetRandomSequence_20();
91   public vtkRandomSequence GetRandomSequence() {
92     long temp = GetRandomSequence_20();
93
94     if (temp == 0) return null;
95     return (vtkRandomSequence)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
96 }
97
98   public vtkPointSource() { super(); }
99
100   public vtkPointSource(long id) { super(id); }
101   public native long   VTKInit();
102
103 }