]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkActor2D.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkActor2D.java
1 // java wrapper for vtkActor2D object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkActor2D extends vtkProp
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 int RenderOverlay_2(vtkViewport id0);
19   public int RenderOverlay(vtkViewport id0)
20     { return RenderOverlay_2(id0); }
21
22   private native int RenderOpaqueGeometry_3(vtkViewport id0);
23   public int RenderOpaqueGeometry(vtkViewport id0)
24     { return RenderOpaqueGeometry_3(id0); }
25
26   private native int RenderTranslucentPolygonalGeometry_4(vtkViewport id0);
27   public int RenderTranslucentPolygonalGeometry(vtkViewport id0)
28     { return RenderTranslucentPolygonalGeometry_4(id0); }
29
30   private native int HasTranslucentPolygonalGeometry_5();
31   public int HasTranslucentPolygonalGeometry()
32     { return HasTranslucentPolygonalGeometry_5(); }
33
34   private native void SetMapper_6(vtkMapper2D id0);
35   public void SetMapper(vtkMapper2D id0)
36     { SetMapper_6(id0); }
37
38   private native long GetMapper_7();
39   public vtkMapper2D GetMapper() {
40     long temp = GetMapper_7();
41
42     if (temp == 0) return null;
43     return (vtkMapper2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native void SetLayerNumber_8(int id0);
47   public void SetLayerNumber(int id0)
48     { SetLayerNumber_8(id0); }
49
50   private native int GetLayerNumber_9();
51   public int GetLayerNumber()
52     { return GetLayerNumber_9(); }
53
54   private native long GetProperty_10();
55   public vtkProperty2D GetProperty() {
56     long temp = GetProperty_10();
57
58     if (temp == 0) return null;
59     return (vtkProperty2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void SetProperty_11(vtkProperty2D id0);
63   public void SetProperty(vtkProperty2D id0)
64     { SetProperty_11(id0); }
65
66   private native long GetPositionCoordinate_12();
67   public vtkCoordinate GetPositionCoordinate() {
68     long temp = GetPositionCoordinate_12();
69
70     if (temp == 0) return null;
71     return (vtkCoordinate)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native void SetPosition_13(double id0,double id1);
75   public void SetPosition(double id0,double id1)
76     { SetPosition_13(id0,id1); }
77
78   private native void SetPosition_14(double id0[]);
79   public void SetPosition(double id0[])
80     { SetPosition_14(id0); }
81
82   private native double[] GetPosition_15();
83   public double[] GetPosition()
84     { return GetPosition_15(); }
85
86   private native void SetDisplayPosition_16(int id0,int id1);
87   public void SetDisplayPosition(int id0,int id1)
88     { SetDisplayPosition_16(id0,id1); }
89
90   private native long GetPosition2Coordinate_17();
91   public vtkCoordinate GetPosition2Coordinate() {
92     long temp = GetPosition2Coordinate_17();
93
94     if (temp == 0) return null;
95     return (vtkCoordinate)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
96 }
97
98   private native void SetPosition2_18(double id0,double id1);
99   public void SetPosition2(double id0,double id1)
100     { SetPosition2_18(id0,id1); }
101
102   private native void SetPosition2_19(double id0[]);
103   public void SetPosition2(double id0[])
104     { SetPosition2_19(id0); }
105
106   private native double[] GetPosition2_20();
107   public double[] GetPosition2()
108     { return GetPosition2_20(); }
109
110   private native void SetWidth_21(double id0);
111   public void SetWidth(double id0)
112     { SetWidth_21(id0); }
113
114   private native double GetWidth_22();
115   public double GetWidth()
116     { return GetWidth_22(); }
117
118   private native void SetHeight_23(double id0);
119   public void SetHeight(double id0)
120     { SetHeight_23(id0); }
121
122   private native double GetHeight_24();
123   public double GetHeight()
124     { return GetHeight_24(); }
125
126   private native int GetMTime_25();
127   public int GetMTime()
128     { return GetMTime_25(); }
129
130   private native void GetActors2D_26(vtkPropCollection id0);
131   public void GetActors2D(vtkPropCollection id0)
132     { GetActors2D_26(id0); }
133
134   private native void ShallowCopy_27(vtkProp id0);
135   public void ShallowCopy(vtkProp id0)
136     { ShallowCopy_27(id0); }
137
138   private native void ReleaseGraphicsResources_28(vtkWindow id0);
139   public void ReleaseGraphicsResources(vtkWindow id0)
140     { ReleaseGraphicsResources_28(id0); }
141
142   private native long GetActualPositionCoordinate_29();
143   public vtkCoordinate GetActualPositionCoordinate() {
144     long temp = GetActualPositionCoordinate_29();
145
146     if (temp == 0) return null;
147     return (vtkCoordinate)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
148 }
149
150   private native long GetActualPosition2Coordinate_30();
151   public vtkCoordinate GetActualPosition2Coordinate() {
152     long temp = GetActualPosition2Coordinate_30();
153
154     if (temp == 0) return null;
155     return (vtkCoordinate)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
156 }
157
158   public vtkActor2D() { super(); }
159
160   public vtkActor2D(long id) { super(id); }
161   public native long   VTKInit();
162
163 }