]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAssemblyNode.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkAssemblyNode.java
1 // java wrapper for vtkAssemblyNode object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAssemblyNode extends vtkObject
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 SetViewProp_2(vtkProp id0);
19   public void SetViewProp(vtkProp id0)
20     { SetViewProp_2(id0); }
21
22   private native long GetViewProp_3();
23   public vtkProp GetViewProp() {
24     long temp = GetViewProp_3();
25
26     if (temp == 0) return null;
27     return (vtkProp)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void SetMatrix_4(vtkMatrix4x4 id0);
31   public void SetMatrix(vtkMatrix4x4 id0)
32     { SetMatrix_4(id0); }
33
34   private native long GetMatrix_5();
35   public vtkMatrix4x4 GetMatrix() {
36     long temp = GetMatrix_5();
37
38     if (temp == 0) return null;
39     return (vtkMatrix4x4)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native int GetMTime_6();
43   public int GetMTime()
44     { return GetMTime_6(); }
45
46   public vtkAssemblyNode() { super(); }
47
48   public vtkAssemblyNode(long id) { super(id); }
49   public native long   VTKInit();
50
51 }