]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAssembly.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkAssembly.java
1 // java wrapper for vtkAssembly object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAssembly 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 AddPart_2(vtkProp3D id0);
19   public void AddPart(vtkProp3D id0)
20     { AddPart_2(id0); }
21
22   private native void RemovePart_3(vtkProp3D id0);
23   public void RemovePart(vtkProp3D id0)
24     { RemovePart_3(id0); }
25
26   private native long GetParts_4();
27   public vtkProp3DCollection GetParts() {
28     long temp = GetParts_4();
29
30     if (temp == 0) return null;
31     return (vtkProp3DCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void GetActors_5(vtkPropCollection id0);
35   public void GetActors(vtkPropCollection id0)
36     { GetActors_5(id0); }
37
38   private native void GetVolumes_6(vtkPropCollection id0);
39   public void GetVolumes(vtkPropCollection id0)
40     { GetVolumes_6(id0); }
41
42   private native int RenderOpaqueGeometry_7(vtkViewport id0);
43   public int RenderOpaqueGeometry(vtkViewport id0)
44     { return RenderOpaqueGeometry_7(id0); }
45
46   private native int RenderTranslucentPolygonalGeometry_8(vtkViewport id0);
47   public int RenderTranslucentPolygonalGeometry(vtkViewport id0)
48     { return RenderTranslucentPolygonalGeometry_8(id0); }
49
50   private native int RenderVolumetricGeometry_9(vtkViewport id0);
51   public int RenderVolumetricGeometry(vtkViewport id0)
52     { return RenderVolumetricGeometry_9(id0); }
53
54   private native int HasTranslucentPolygonalGeometry_10();
55   public int HasTranslucentPolygonalGeometry()
56     { return HasTranslucentPolygonalGeometry_10(); }
57
58   private native void ReleaseGraphicsResources_11(vtkWindow id0);
59   public void ReleaseGraphicsResources(vtkWindow id0)
60     { ReleaseGraphicsResources_11(id0); }
61
62   private native void InitPathTraversal_12();
63   public void InitPathTraversal()
64     { InitPathTraversal_12(); }
65
66   private native long GetNextPath_13();
67   public vtkAssemblyPath GetNextPath() {
68     long temp = GetNextPath_13();
69
70     if (temp == 0) return null;
71     return (vtkAssemblyPath)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native int GetNumberOfPaths_14();
75   public int GetNumberOfPaths()
76     { return GetNumberOfPaths_14(); }
77
78   private native void GetBounds_15(double id0[]);
79   public void GetBounds(double id0[])
80     { GetBounds_15(id0); }
81
82   private native double[] GetBounds_16();
83   public double[] GetBounds()
84     { return GetBounds_16(); }
85
86   private native int GetMTime_17();
87   public int GetMTime()
88     { return GetMTime_17(); }
89
90   private native void ShallowCopy_18(vtkProp id0);
91   public void ShallowCopy(vtkProp id0)
92     { ShallowCopy_18(id0); }
93
94   private native void BuildPaths_19(vtkAssemblyPaths id0,vtkAssemblyPath id1);
95   public void BuildPaths(vtkAssemblyPaths id0,vtkAssemblyPath id1)
96     { BuildPaths_19(id0,id1); }
97
98   public vtkAssembly() { super(); }
99
100   public vtkAssembly(long id) { super(id); }
101   public native long   VTKInit();
102
103 }