]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkActor.java
Fix PNG loading
[simantics/3d.git] / vtk / src / vtk / vtkActor.java
1 // java wrapper for vtkActor object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkActor extends vtkProp3D
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 GetActors_2(vtkPropCollection id0);
19   public void GetActors(vtkPropCollection id0)
20     { GetActors_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 Render_6(vtkRenderer id0,vtkMapper id1);
35   public void Render(vtkRenderer id0,vtkMapper id1)
36     { Render_6(id0,id1); }
37
38   private native void ShallowCopy_7(vtkProp id0);
39   public void ShallowCopy(vtkProp id0)
40     { ShallowCopy_7(id0); }
41
42   private native void ReleaseGraphicsResources_8(vtkWindow id0);
43   public void ReleaseGraphicsResources(vtkWindow id0)
44     { ReleaseGraphicsResources_8(id0); }
45
46   private native void SetProperty_9(vtkProperty id0);
47   public void SetProperty(vtkProperty id0)
48     { SetProperty_9(id0); }
49
50   private native long GetProperty_10();
51   public vtkProperty GetProperty() {
52     long temp = GetProperty_10();
53
54     if (temp == 0) return null;
55     return (vtkProperty)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native long MakeProperty_11();
59   public vtkProperty MakeProperty() {
60     long temp = MakeProperty_11();
61
62     if (temp == 0) return null;
63     return (vtkProperty)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   private native void SetBackfaceProperty_12(vtkProperty id0);
67   public void SetBackfaceProperty(vtkProperty id0)
68     { SetBackfaceProperty_12(id0); }
69
70   private native long GetBackfaceProperty_13();
71   public vtkProperty GetBackfaceProperty() {
72     long temp = GetBackfaceProperty_13();
73
74     if (temp == 0) return null;
75     return (vtkProperty)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native void SetTexture_14(vtkTexture id0);
79   public void SetTexture(vtkTexture id0)
80     { SetTexture_14(id0); }
81
82   private native long GetTexture_15();
83   public vtkTexture GetTexture() {
84     long temp = GetTexture_15();
85
86     if (temp == 0) return null;
87     return (vtkTexture)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
88 }
89
90   private native void SetMapper_16(vtkMapper id0);
91   public void SetMapper(vtkMapper id0)
92     { SetMapper_16(id0); }
93
94   private native long GetMapper_17();
95   public vtkMapper GetMapper() {
96     long temp = GetMapper_17();
97
98     if (temp == 0) return null;
99     return (vtkMapper)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
100 }
101
102   private native double[] GetBounds_18();
103   public double[] GetBounds()
104     { return GetBounds_18(); }
105
106   private native void ApplyProperties_19();
107   public void ApplyProperties()
108     { ApplyProperties_19(); }
109
110   private native int GetMTime_20();
111   public int GetMTime()
112     { return GetMTime_20(); }
113
114   private native int GetRedrawMTime_21();
115   public int GetRedrawMTime()
116     { return GetRedrawMTime_21(); }
117
118   private native boolean GetForceOpaque_22();
119   public boolean GetForceOpaque()
120     { return GetForceOpaque_22(); }
121
122   private native void SetForceOpaque_23(boolean id0);
123   public void SetForceOpaque(boolean id0)
124     { SetForceOpaque_23(id0); }
125
126   private native void ForceOpaqueOn_24();
127   public void ForceOpaqueOn()
128     { ForceOpaqueOn_24(); }
129
130   private native void ForceOpaqueOff_25();
131   public void ForceOpaqueOff()
132     { ForceOpaqueOff_25(); }
133
134   private native boolean GetForceTranslucent_26();
135   public boolean GetForceTranslucent()
136     { return GetForceTranslucent_26(); }
137
138   private native void SetForceTranslucent_27(boolean id0);
139   public void SetForceTranslucent(boolean id0)
140     { SetForceTranslucent_27(id0); }
141
142   private native void ForceTranslucentOn_28();
143   public void ForceTranslucentOn()
144     { ForceTranslucentOn_28(); }
145
146   private native void ForceTranslucentOff_29();
147   public void ForceTranslucentOff()
148     { ForceTranslucentOff_29(); }
149
150   private native boolean GetSupportsSelection_30();
151   public boolean GetSupportsSelection()
152     { return GetSupportsSelection_30(); }
153
154   private native void GetBounds_31(double id0[]);
155   public void GetBounds(double id0[])
156     { GetBounds_31(id0); }
157
158   public vtkActor() { super(); }
159
160   public vtkActor(long id) { super(id); }
161   public native long   VTKInit();
162
163 }