]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkRenderer.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkRenderer.java
1 // java wrapper for vtkRenderer object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkRenderer extends vtkViewport
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 AddActor_2(vtkProp id0);
19   public void AddActor(vtkProp id0)
20     { AddActor_2(id0); }
21
22   private native void AddVolume_3(vtkProp id0);
23   public void AddVolume(vtkProp id0)
24     { AddVolume_3(id0); }
25
26   private native void RemoveActor_4(vtkProp id0);
27   public void RemoveActor(vtkProp id0)
28     { RemoveActor_4(id0); }
29
30   private native void RemoveVolume_5(vtkProp id0);
31   public void RemoveVolume(vtkProp id0)
32     { RemoveVolume_5(id0); }
33
34   private native void AddLight_6(vtkLight id0);
35   public void AddLight(vtkLight id0)
36     { AddLight_6(id0); }
37
38   private native void RemoveLight_7(vtkLight id0);
39   public void RemoveLight(vtkLight id0)
40     { RemoveLight_7(id0); }
41
42   private native void RemoveAllLights_8();
43   public void RemoveAllLights()
44     { RemoveAllLights_8(); }
45
46   private native long GetLights_9();
47   public vtkLightCollection GetLights() {
48     long temp = GetLights_9();
49
50     if (temp == 0) return null;
51     return (vtkLightCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void SetLightCollection_10(vtkLightCollection id0);
55   public void SetLightCollection(vtkLightCollection id0)
56     { SetLightCollection_10(id0); }
57
58   private native void CreateLight_11();
59   public void CreateLight()
60     { CreateLight_11(); }
61
62   private native long MakeLight_12();
63   public vtkLight MakeLight() {
64     long temp = MakeLight_12();
65
66     if (temp == 0) return null;
67     return (vtkLight)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native int GetTwoSidedLighting_13();
71   public int GetTwoSidedLighting()
72     { return GetTwoSidedLighting_13(); }
73
74   private native void SetTwoSidedLighting_14(int id0);
75   public void SetTwoSidedLighting(int id0)
76     { SetTwoSidedLighting_14(id0); }
77
78   private native void TwoSidedLightingOn_15();
79   public void TwoSidedLightingOn()
80     { TwoSidedLightingOn_15(); }
81
82   private native void TwoSidedLightingOff_16();
83   public void TwoSidedLightingOff()
84     { TwoSidedLightingOff_16(); }
85
86   private native void SetLightFollowCamera_17(int id0);
87   public void SetLightFollowCamera(int id0)
88     { SetLightFollowCamera_17(id0); }
89
90   private native int GetLightFollowCamera_18();
91   public int GetLightFollowCamera()
92     { return GetLightFollowCamera_18(); }
93
94   private native void LightFollowCameraOn_19();
95   public void LightFollowCameraOn()
96     { LightFollowCameraOn_19(); }
97
98   private native void LightFollowCameraOff_20();
99   public void LightFollowCameraOff()
100     { LightFollowCameraOff_20(); }
101
102   private native int GetAutomaticLightCreation_21();
103   public int GetAutomaticLightCreation()
104     { return GetAutomaticLightCreation_21(); }
105
106   private native void SetAutomaticLightCreation_22(int id0);
107   public void SetAutomaticLightCreation(int id0)
108     { SetAutomaticLightCreation_22(id0); }
109
110   private native void AutomaticLightCreationOn_23();
111   public void AutomaticLightCreationOn()
112     { AutomaticLightCreationOn_23(); }
113
114   private native void AutomaticLightCreationOff_24();
115   public void AutomaticLightCreationOff()
116     { AutomaticLightCreationOff_24(); }
117
118   private native int UpdateLightsGeometryToFollowCamera_25();
119   public int UpdateLightsGeometryToFollowCamera()
120     { return UpdateLightsGeometryToFollowCamera_25(); }
121
122   private native long GetVolumes_26();
123   public vtkVolumeCollection GetVolumes() {
124     long temp = GetVolumes_26();
125
126     if (temp == 0) return null;
127     return (vtkVolumeCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
128 }
129
130   private native long GetActors_27();
131   public vtkActorCollection GetActors() {
132     long temp = GetActors_27();
133
134     if (temp == 0) return null;
135     return (vtkActorCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
136 }
137
138   private native void SetActiveCamera_28(vtkCamera id0);
139   public void SetActiveCamera(vtkCamera id0)
140     { SetActiveCamera_28(id0); }
141
142   private native long GetActiveCamera_29();
143   public vtkCamera GetActiveCamera() {
144     long temp = GetActiveCamera_29();
145
146     if (temp == 0) return null;
147     return (vtkCamera)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
148 }
149
150   private native long MakeCamera_30();
151   public vtkCamera MakeCamera() {
152     long temp = MakeCamera_30();
153
154     if (temp == 0) return null;
155     return (vtkCamera)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
156 }
157
158   private native void SetErase_31(int id0);
159   public void SetErase(int id0)
160     { SetErase_31(id0); }
161
162   private native int GetErase_32();
163   public int GetErase()
164     { return GetErase_32(); }
165
166   private native void EraseOn_33();
167   public void EraseOn()
168     { EraseOn_33(); }
169
170   private native void EraseOff_34();
171   public void EraseOff()
172     { EraseOff_34(); }
173
174   private native void SetDraw_35(int id0);
175   public void SetDraw(int id0)
176     { SetDraw_35(id0); }
177
178   private native int GetDraw_36();
179   public int GetDraw()
180     { return GetDraw_36(); }
181
182   private native void DrawOn_37();
183   public void DrawOn()
184     { DrawOn_37(); }
185
186   private native void DrawOff_38();
187   public void DrawOff()
188     { DrawOff_38(); }
189
190   private native int CaptureGL2PSSpecialProp_39(vtkProp id0);
191   public int CaptureGL2PSSpecialProp(vtkProp id0)
192     { return CaptureGL2PSSpecialProp_39(id0); }
193
194   private native void SetGL2PSSpecialPropCollection_40(vtkPropCollection id0);
195   public void SetGL2PSSpecialPropCollection(vtkPropCollection id0)
196     { SetGL2PSSpecialPropCollection_40(id0); }
197
198   private native void AddCuller_41(vtkCuller id0);
199   public void AddCuller(vtkCuller id0)
200     { AddCuller_41(id0); }
201
202   private native void RemoveCuller_42(vtkCuller id0);
203   public void RemoveCuller(vtkCuller id0)
204     { RemoveCuller_42(id0); }
205
206   private native long GetCullers_43();
207   public vtkCullerCollection GetCullers() {
208     long temp = GetCullers_43();
209
210     if (temp == 0) return null;
211     return (vtkCullerCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
212 }
213
214   private native void SetAmbient_44(double id0,double id1,double id2);
215   public void SetAmbient(double id0,double id1,double id2)
216     { SetAmbient_44(id0,id1,id2); }
217
218   private native void SetAmbient_45(double id0[]);
219   public void SetAmbient(double id0[])
220     { SetAmbient_45(id0); }
221
222   private native double[] GetAmbient_46();
223   public double[] GetAmbient()
224     { return GetAmbient_46(); }
225
226   private native void SetAllocatedRenderTime_47(double id0);
227   public void SetAllocatedRenderTime(double id0)
228     { SetAllocatedRenderTime_47(id0); }
229
230   private native double GetAllocatedRenderTime_48();
231   public double GetAllocatedRenderTime()
232     { return GetAllocatedRenderTime_48(); }
233
234   private native double GetTimeFactor_49();
235   public double GetTimeFactor()
236     { return GetTimeFactor_49(); }
237
238   private native void Render_50();
239   public void Render()
240     { Render_50(); }
241
242   private native void DeviceRender_51();
243   public void DeviceRender()
244     { DeviceRender_51(); }
245
246   private native void DeviceRenderOpaqueGeometry_52();
247   public void DeviceRenderOpaqueGeometry()
248     { DeviceRenderOpaqueGeometry_52(); }
249
250   private native void DeviceRenderTranslucentPolygonalGeometry_53();
251   public void DeviceRenderTranslucentPolygonalGeometry()
252     { DeviceRenderTranslucentPolygonalGeometry_53(); }
253
254   private native void ClearLights_54();
255   public void ClearLights()
256     { ClearLights_54(); }
257
258   private native void Clear_55();
259   public void Clear()
260     { Clear_55(); }
261
262   private native int VisibleActorCount_56();
263   public int VisibleActorCount()
264     { return VisibleActorCount_56(); }
265
266   private native int VisibleVolumeCount_57();
267   public int VisibleVolumeCount()
268     { return VisibleVolumeCount_57(); }
269
270   private native void ComputeVisiblePropBounds_58(double id0[]);
271   public void ComputeVisiblePropBounds(double id0[])
272     { ComputeVisiblePropBounds_58(id0); }
273
274   private native double[] ComputeVisiblePropBounds_59();
275   public double[] ComputeVisiblePropBounds()
276     { return ComputeVisiblePropBounds_59(); }
277
278   private native void ResetCameraClippingRange_60();
279   public void ResetCameraClippingRange()
280     { ResetCameraClippingRange_60(); }
281
282   private native void ResetCameraClippingRange_61(double id0[]);
283   public void ResetCameraClippingRange(double id0[])
284     { ResetCameraClippingRange_61(id0); }
285
286   private native void ResetCameraClippingRange_62(double id0,double id1,double id2,double id3,double id4,double id5);
287   public void ResetCameraClippingRange(double id0,double id1,double id2,double id3,double id4,double id5)
288     { ResetCameraClippingRange_62(id0,id1,id2,id3,id4,id5); }
289
290   private native void SetNearClippingPlaneTolerance_63(double id0);
291   public void SetNearClippingPlaneTolerance(double id0)
292     { SetNearClippingPlaneTolerance_63(id0); }
293
294   private native double GetNearClippingPlaneToleranceMinValue_64();
295   public double GetNearClippingPlaneToleranceMinValue()
296     { return GetNearClippingPlaneToleranceMinValue_64(); }
297
298   private native double GetNearClippingPlaneToleranceMaxValue_65();
299   public double GetNearClippingPlaneToleranceMaxValue()
300     { return GetNearClippingPlaneToleranceMaxValue_65(); }
301
302   private native double GetNearClippingPlaneTolerance_66();
303   public double GetNearClippingPlaneTolerance()
304     { return GetNearClippingPlaneTolerance_66(); }
305
306   private native void SetClippingRangeExpansion_67(double id0);
307   public void SetClippingRangeExpansion(double id0)
308     { SetClippingRangeExpansion_67(id0); }
309
310   private native double GetClippingRangeExpansionMinValue_68();
311   public double GetClippingRangeExpansionMinValue()
312     { return GetClippingRangeExpansionMinValue_68(); }
313
314   private native double GetClippingRangeExpansionMaxValue_69();
315   public double GetClippingRangeExpansionMaxValue()
316     { return GetClippingRangeExpansionMaxValue_69(); }
317
318   private native double GetClippingRangeExpansion_70();
319   public double GetClippingRangeExpansion()
320     { return GetClippingRangeExpansion_70(); }
321
322   private native void ResetCamera_71();
323   public void ResetCamera()
324     { ResetCamera_71(); }
325
326   private native void ResetCamera_72(double id0[]);
327   public void ResetCamera(double id0[])
328     { ResetCamera_72(id0); }
329
330   private native void ResetCamera_73(double id0,double id1,double id2,double id3,double id4,double id5);
331   public void ResetCamera(double id0,double id1,double id2,double id3,double id4,double id5)
332     { ResetCamera_73(id0,id1,id2,id3,id4,id5); }
333
334   private native void SetRenderWindow_74(vtkRenderWindow id0);
335   public void SetRenderWindow(vtkRenderWindow id0)
336     { SetRenderWindow_74(id0); }
337
338   private native long GetRenderWindow_75();
339   public vtkRenderWindow GetRenderWindow() {
340     long temp = GetRenderWindow_75();
341
342     if (temp == 0) return null;
343     return (vtkRenderWindow)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
344 }
345
346   private native long GetVTKWindow_76();
347   public vtkWindow GetVTKWindow() {
348     long temp = GetVTKWindow_76();
349
350     if (temp == 0) return null;
351     return (vtkWindow)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
352 }
353
354   private native void SetBackingStore_77(int id0);
355   public void SetBackingStore(int id0)
356     { SetBackingStore_77(id0); }
357
358   private native int GetBackingStore_78();
359   public int GetBackingStore()
360     { return GetBackingStore_78(); }
361
362   private native void BackingStoreOn_79();
363   public void BackingStoreOn()
364     { BackingStoreOn_79(); }
365
366   private native void BackingStoreOff_80();
367   public void BackingStoreOff()
368     { BackingStoreOff_80(); }
369
370   private native void SetInteractive_81(int id0);
371   public void SetInteractive(int id0)
372     { SetInteractive_81(id0); }
373
374   private native int GetInteractive_82();
375   public int GetInteractive()
376     { return GetInteractive_82(); }
377
378   private native void InteractiveOn_83();
379   public void InteractiveOn()
380     { InteractiveOn_83(); }
381
382   private native void InteractiveOff_84();
383   public void InteractiveOff()
384     { InteractiveOff_84(); }
385
386   private native void SetLayer_85(int id0);
387   public void SetLayer(int id0)
388     { SetLayer_85(id0); }
389
390   private native int GetLayer_86();
391   public int GetLayer()
392     { return GetLayer_86(); }
393
394   private native int GetPreserveColorBuffer_87();
395   public int GetPreserveColorBuffer()
396     { return GetPreserveColorBuffer_87(); }
397
398   private native void SetPreserveColorBuffer_88(int id0);
399   public void SetPreserveColorBuffer(int id0)
400     { SetPreserveColorBuffer_88(id0); }
401
402   private native void PreserveColorBufferOn_89();
403   public void PreserveColorBufferOn()
404     { PreserveColorBufferOn_89(); }
405
406   private native void PreserveColorBufferOff_90();
407   public void PreserveColorBufferOff()
408     { PreserveColorBufferOff_90(); }
409
410   private native void SetPreserveDepthBuffer_91(int id0);
411   public void SetPreserveDepthBuffer(int id0)
412     { SetPreserveDepthBuffer_91(id0); }
413
414   private native int GetPreserveDepthBuffer_92();
415   public int GetPreserveDepthBuffer()
416     { return GetPreserveDepthBuffer_92(); }
417
418   private native void PreserveDepthBufferOn_93();
419   public void PreserveDepthBufferOn()
420     { PreserveDepthBufferOn_93(); }
421
422   private native void PreserveDepthBufferOff_94();
423   public void PreserveDepthBufferOff()
424     { PreserveDepthBufferOff_94(); }
425
426   private native int Transparent_95();
427   public int Transparent()
428     { return Transparent_95(); }
429
430   private native void WorldToView_96();
431   public void WorldToView()
432     { WorldToView_96(); }
433
434   private native void ViewToWorld_97();
435   public void ViewToWorld()
436     { ViewToWorld_97(); }
437
438   private native double GetZ_98(int id0,int id1);
439   public double GetZ(int id0,int id1)
440     { return GetZ_98(id0,id1); }
441
442   private native int GetMTime_99();
443   public int GetMTime()
444     { return GetMTime_99(); }
445
446   private native double GetLastRenderTimeInSeconds_100();
447   public double GetLastRenderTimeInSeconds()
448     { return GetLastRenderTimeInSeconds_100(); }
449
450   private native int GetNumberOfPropsRendered_101();
451   public int GetNumberOfPropsRendered()
452     { return GetNumberOfPropsRendered_101(); }
453
454   private native long PickProp_102(double id0,double id1);
455   public vtkAssemblyPath PickProp(double id0,double id1) {
456     long temp = PickProp_102(id0,id1);
457
458     if (temp == 0) return null;
459     return (vtkAssemblyPath)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
460 }
461
462   private native long PickProp_103(double id0,double id1,double id2,double id3);
463   public vtkAssemblyPath PickProp(double id0,double id1,double id2,double id3) {
464     long temp = PickProp_103(id0,id1,id2,id3);
465
466     if (temp == 0) return null;
467     return (vtkAssemblyPath)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
468 }
469
470   private native void StereoMidpoint_104();
471   public void StereoMidpoint()
472     { StereoMidpoint_104(); }
473
474   private native double GetTiledAspectRatio_105();
475   public double GetTiledAspectRatio()
476     { return GetTiledAspectRatio_105(); }
477
478   private native int IsActiveCameraCreated_106();
479   public int IsActiveCameraCreated()
480     { return IsActiveCameraCreated_106(); }
481
482   private native void SetUseDepthPeeling_107(int id0);
483   public void SetUseDepthPeeling(int id0)
484     { SetUseDepthPeeling_107(id0); }
485
486   private native int GetUseDepthPeeling_108();
487   public int GetUseDepthPeeling()
488     { return GetUseDepthPeeling_108(); }
489
490   private native void UseDepthPeelingOn_109();
491   public void UseDepthPeelingOn()
492     { UseDepthPeelingOn_109(); }
493
494   private native void UseDepthPeelingOff_110();
495   public void UseDepthPeelingOff()
496     { UseDepthPeelingOff_110(); }
497
498   private native void SetUseDepthPeelingForVolumes_111(boolean id0);
499   public void SetUseDepthPeelingForVolumes(boolean id0)
500     { SetUseDepthPeelingForVolumes_111(id0); }
501
502   private native boolean GetUseDepthPeelingForVolumes_112();
503   public boolean GetUseDepthPeelingForVolumes()
504     { return GetUseDepthPeelingForVolumes_112(); }
505
506   private native void UseDepthPeelingForVolumesOn_113();
507   public void UseDepthPeelingForVolumesOn()
508     { UseDepthPeelingForVolumesOn_113(); }
509
510   private native void UseDepthPeelingForVolumesOff_114();
511   public void UseDepthPeelingForVolumesOff()
512     { UseDepthPeelingForVolumesOff_114(); }
513
514   private native void SetOcclusionRatio_115(double id0);
515   public void SetOcclusionRatio(double id0)
516     { SetOcclusionRatio_115(id0); }
517
518   private native double GetOcclusionRatioMinValue_116();
519   public double GetOcclusionRatioMinValue()
520     { return GetOcclusionRatioMinValue_116(); }
521
522   private native double GetOcclusionRatioMaxValue_117();
523   public double GetOcclusionRatioMaxValue()
524     { return GetOcclusionRatioMaxValue_117(); }
525
526   private native double GetOcclusionRatio_118();
527   public double GetOcclusionRatio()
528     { return GetOcclusionRatio_118(); }
529
530   private native void SetMaximumNumberOfPeels_119(int id0);
531   public void SetMaximumNumberOfPeels(int id0)
532     { SetMaximumNumberOfPeels_119(id0); }
533
534   private native int GetMaximumNumberOfPeels_120();
535   public int GetMaximumNumberOfPeels()
536     { return GetMaximumNumberOfPeels_120(); }
537
538   private native int GetLastRenderingUsedDepthPeeling_121();
539   public int GetLastRenderingUsedDepthPeeling()
540     { return GetLastRenderingUsedDepthPeeling_121(); }
541
542   private native void SetDelegate_122(vtkRendererDelegate id0);
543   public void SetDelegate(vtkRendererDelegate id0)
544     { SetDelegate_122(id0); }
545
546   private native long GetDelegate_123();
547   public vtkRendererDelegate GetDelegate() {
548     long temp = GetDelegate_123();
549
550     if (temp == 0) return null;
551     return (vtkRendererDelegate)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
552 }
553
554   private native long GetSelector_124();
555   public vtkHardwareSelector GetSelector() {
556     long temp = GetSelector_124();
557
558     if (temp == 0) return null;
559     return (vtkHardwareSelector)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
560 }
561
562   private native void SetLeftBackgroundTexture_125(vtkTexture id0);
563   public void SetLeftBackgroundTexture(vtkTexture id0)
564     { SetLeftBackgroundTexture_125(id0); }
565
566   private native long GetLeftBackgroundTexture_126();
567   public vtkTexture GetLeftBackgroundTexture() {
568     long temp = GetLeftBackgroundTexture_126();
569
570     if (temp == 0) return null;
571     return (vtkTexture)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
572 }
573
574   private native void SetBackgroundTexture_127(vtkTexture id0);
575   public void SetBackgroundTexture(vtkTexture id0)
576     { SetBackgroundTexture_127(id0); }
577
578   private native long GetBackgroundTexture_128();
579   public vtkTexture GetBackgroundTexture() {
580     long temp = GetBackgroundTexture_128();
581
582     if (temp == 0) return null;
583     return (vtkTexture)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
584 }
585
586   private native void SetRightBackgroundTexture_129(vtkTexture id0);
587   public void SetRightBackgroundTexture(vtkTexture id0)
588     { SetRightBackgroundTexture_129(id0); }
589
590   private native long GetRightBackgroundTexture_130();
591   public vtkTexture GetRightBackgroundTexture() {
592     long temp = GetRightBackgroundTexture_130();
593
594     if (temp == 0) return null;
595     return (vtkTexture)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
596 }
597
598   private native void SetTexturedBackground_131(boolean id0);
599   public void SetTexturedBackground(boolean id0)
600     { SetTexturedBackground_131(id0); }
601
602   private native boolean GetTexturedBackground_132();
603   public boolean GetTexturedBackground()
604     { return GetTexturedBackground_132(); }
605
606   private native void TexturedBackgroundOn_133();
607   public void TexturedBackgroundOn()
608     { TexturedBackgroundOn_133(); }
609
610   private native void TexturedBackgroundOff_134();
611   public void TexturedBackgroundOff()
612     { TexturedBackgroundOff_134(); }
613
614   private native void ReleaseGraphicsResources_135(vtkWindow id0);
615   public void ReleaseGraphicsResources(vtkWindow id0)
616     { ReleaseGraphicsResources_135(id0); }
617
618   private native void SetUseFXAA_136(boolean id0);
619   public void SetUseFXAA(boolean id0)
620     { SetUseFXAA_136(id0); }
621
622   private native boolean GetUseFXAA_137();
623   public boolean GetUseFXAA()
624     { return GetUseFXAA_137(); }
625
626   private native void UseFXAAOn_138();
627   public void UseFXAAOn()
628     { UseFXAAOn_138(); }
629
630   private native void UseFXAAOff_139();
631   public void UseFXAAOff()
632     { UseFXAAOff_139(); }
633
634   private native long GetFXAAOptions_140();
635   public vtkFXAAOptions GetFXAAOptions() {
636     long temp = GetFXAAOptions_140();
637
638     if (temp == 0) return null;
639     return (vtkFXAAOptions)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
640 }
641
642   private native void SetFXAAOptions_141(vtkFXAAOptions id0);
643   public void SetFXAAOptions(vtkFXAAOptions id0)
644     { SetFXAAOptions_141(id0); }
645
646   private native void SetUseShadows_142(int id0);
647   public void SetUseShadows(int id0)
648     { SetUseShadows_142(id0); }
649
650   private native int GetUseShadows_143();
651   public int GetUseShadows()
652     { return GetUseShadows_143(); }
653
654   private native void UseShadowsOn_144();
655   public void UseShadowsOn()
656     { UseShadowsOn_144(); }
657
658   private native void UseShadowsOff_145();
659   public void UseShadowsOff()
660     { UseShadowsOff_145(); }
661
662   private native void SetUseHiddenLineRemoval_146(int id0);
663   public void SetUseHiddenLineRemoval(int id0)
664     { SetUseHiddenLineRemoval_146(id0); }
665
666   private native int GetUseHiddenLineRemoval_147();
667   public int GetUseHiddenLineRemoval()
668     { return GetUseHiddenLineRemoval_147(); }
669
670   private native void UseHiddenLineRemovalOn_148();
671   public void UseHiddenLineRemovalOn()
672     { UseHiddenLineRemovalOn_148(); }
673
674   private native void UseHiddenLineRemovalOff_149();
675   public void UseHiddenLineRemovalOff()
676     { UseHiddenLineRemovalOff_149(); }
677
678   private native void SetPass_150(vtkRenderPass id0);
679   public void SetPass(vtkRenderPass id0)
680     { SetPass_150(id0); }
681
682   private native long GetPass_151();
683   public vtkRenderPass GetPass() {
684     long temp = GetPass_151();
685
686     if (temp == 0) return null;
687     return (vtkRenderPass)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
688 }
689
690   private native long GetInformation_152();
691   public vtkInformation GetInformation() {
692     long temp = GetInformation_152();
693
694     if (temp == 0) return null;
695     return (vtkInformation)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
696 }
697
698   private native void SetInformation_153(vtkInformation id0);
699   public void SetInformation(vtkInformation id0)
700     { SetInformation_153(id0); }
701
702   public vtkRenderer() { super(); }
703
704   public vtkRenderer(long id) { super(id); }
705   public native long   VTKInit();
706
707 }