]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSpheres.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkSpheres.java
1 // java wrapper for vtkSpheres object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSpheres extends vtkImplicitFunction
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 double EvaluateFunction_2(double id0[]);
19   public double EvaluateFunction(double id0[])
20     { return EvaluateFunction_2(id0); }
21
22   private native void EvaluateGradient_3(double id0[],double id1[]);
23   public void EvaluateGradient(double id0[],double id1[])
24     { EvaluateGradient_3(id0,id1); }
25
26   private native void SetCenters_4(vtkPoints id0);
27   public void SetCenters(vtkPoints id0)
28     { SetCenters_4(id0); }
29
30   private native long GetCenters_5();
31   public vtkPoints GetCenters() {
32     long temp = GetCenters_5();
33
34     if (temp == 0) return null;
35     return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native void SetRadii_6(vtkDataArray id0);
39   public void SetRadii(vtkDataArray id0)
40     { SetRadii_6(id0); }
41
42   private native long GetRadii_7();
43   public vtkDataArray GetRadii() {
44     long temp = GetRadii_7();
45
46     if (temp == 0) return null;
47     return (vtkDataArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native int GetNumberOfSpheres_8();
51   public int GetNumberOfSpheres()
52     { return GetNumberOfSpheres_8(); }
53
54   private native long GetSphere_9(int id0);
55   public vtkSphere GetSphere(int id0) {
56     long temp = GetSphere_9(id0);
57
58     if (temp == 0) return null;
59     return (vtkSphere)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void GetSphere_10(int id0,vtkSphere id1);
63   public void GetSphere(int id0,vtkSphere id1)
64     { GetSphere_10(id0,id1); }
65
66   private native void EvaluateFunction_11(vtkDataArray id0,vtkDataArray id1);
67   public void EvaluateFunction(vtkDataArray id0,vtkDataArray id1)
68     { EvaluateFunction_11(id0,id1); }
69
70   private native double EvaluateFunction_12(double id0,double id1,double id2);
71   public double EvaluateFunction(double id0,double id1,double id2)
72     { return EvaluateFunction_12(id0,id1,id2); }
73
74   public vtkSpheres() { super(); }
75
76   public vtkSpheres(long id) { super(id); }
77   public native long   VTKInit();
78
79 }