]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGeoImageNode.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkGeoImageNode.java
1 // java wrapper for vtkGeoImageNode object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGeoImageNode extends vtkGeoTreeNode
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 long GetChild_2(int id0);
19   public vtkGeoImageNode GetChild(int id0) {
20     long temp = GetChild_2(id0);
21
22     if (temp == 0) return null;
23     return (vtkGeoImageNode)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetParent_3();
27   public vtkGeoImageNode GetParent() {
28     long temp = GetParent_3();
29
30     if (temp == 0) return null;
31     return (vtkGeoImageNode)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetImage_4();
35   public vtkImageData GetImage() {
36     long temp = GetImage_4();
37
38     if (temp == 0) return null;
39     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetImage_5(vtkImageData id0);
43   public void SetImage(vtkImageData id0)
44     { SetImage_5(id0); }
45
46   private native long GetTexture_6();
47   public vtkTexture GetTexture() {
48     long temp = GetTexture_6();
49
50     if (temp == 0) return null;
51     return (vtkTexture)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void SetTexture_7(vtkTexture id0);
55   public void SetTexture(vtkTexture id0)
56     { SetTexture_7(id0); }
57
58   private native void LoadAnImage_8(String id0);
59   public void LoadAnImage(String id0)
60     { LoadAnImage_8(id0); }
61
62   private native void ShallowCopy_9(vtkGeoTreeNode id0);
63   public void ShallowCopy(vtkGeoTreeNode id0)
64     { ShallowCopy_9(id0); }
65
66   private native void DeepCopy_10(vtkGeoTreeNode id0);
67   public void DeepCopy(vtkGeoTreeNode id0)
68     { DeepCopy_10(id0); }
69
70   private native boolean HasData_11();
71   public boolean HasData()
72     { return HasData_11(); }
73
74   private native void DeleteData_12();
75   public void DeleteData()
76     { DeleteData_12(); }
77
78   public vtkGeoImageNode() { super(); }
79
80   public vtkGeoImageNode(long id) { super(id); }
81   public native long   VTKInit();
82
83 }