]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPropAssembly.java
Fix PNG loading
[simantics/3d.git] / vtk / src / vtk / vtkPropAssembly.java
1 // java wrapper for vtkPropAssembly object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPropAssembly 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 void AddPart_2(vtkProp id0);
19   public void AddPart(vtkProp id0)
20     { AddPart_2(id0); }
21
22   private native void RemovePart_3(vtkProp id0);
23   public void RemovePart(vtkProp id0)
24     { RemovePart_3(id0); }
25
26   private native long GetParts_4();
27   public vtkPropCollection GetParts() {
28     long temp = GetParts_4();
29
30     if (temp == 0) return null;
31     return (vtkPropCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native int RenderOpaqueGeometry_5(vtkViewport id0);
35   public int RenderOpaqueGeometry(vtkViewport id0)
36     { return RenderOpaqueGeometry_5(id0); }
37
38   private native int RenderTranslucentPolygonalGeometry_6(vtkViewport id0);
39   public int RenderTranslucentPolygonalGeometry(vtkViewport id0)
40     { return RenderTranslucentPolygonalGeometry_6(id0); }
41
42   private native int RenderVolumetricGeometry_7(vtkViewport id0);
43   public int RenderVolumetricGeometry(vtkViewport id0)
44     { return RenderVolumetricGeometry_7(id0); }
45
46   private native int RenderOverlay_8(vtkViewport id0);
47   public int RenderOverlay(vtkViewport id0)
48     { return RenderOverlay_8(id0); }
49
50   private native int HasTranslucentPolygonalGeometry_9();
51   public int HasTranslucentPolygonalGeometry()
52     { return HasTranslucentPolygonalGeometry_9(); }
53
54   private native void ReleaseGraphicsResources_10(vtkWindow id0);
55   public void ReleaseGraphicsResources(vtkWindow id0)
56     { ReleaseGraphicsResources_10(id0); }
57
58   private native double[] GetBounds_11();
59   public double[] GetBounds()
60     { return GetBounds_11(); }
61
62   private native void ShallowCopy_12(vtkProp id0);
63   public void ShallowCopy(vtkProp id0)
64     { ShallowCopy_12(id0); }
65
66   private native int GetMTime_13();
67   public int GetMTime()
68     { return GetMTime_13(); }
69
70   private native void InitPathTraversal_14();
71   public void InitPathTraversal()
72     { InitPathTraversal_14(); }
73
74   private native long GetNextPath_15();
75   public vtkAssemblyPath GetNextPath() {
76     long temp = GetNextPath_15();
77
78     if (temp == 0) return null;
79     return (vtkAssemblyPath)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   private native int GetNumberOfPaths_16();
83   public int GetNumberOfPaths()
84     { return GetNumberOfPaths_16(); }
85
86   private native void BuildPaths_17(vtkAssemblyPaths id0,vtkAssemblyPath id1);
87   public void BuildPaths(vtkAssemblyPaths id0,vtkAssemblyPath id1)
88     { BuildPaths_17(id0,id1); }
89
90   public vtkPropAssembly() { super(); }
91
92   public vtkPropAssembly(long id) { super(id); }
93   public native long   VTKInit();
94
95 }