]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkOBJWriter.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkOBJWriter.java
1 // java wrapper for vtkOBJWriter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkOBJWriter extends vtkWriter
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 GetInputGeometry_2();
19   public vtkPolyData GetInputGeometry() {
20     long temp = GetInputGeometry_2();
21
22     if (temp == 0) return null;
23     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetInputTexture_3();
27   public vtkImageData GetInputTexture() {
28     long temp = GetInputTexture_3();
29
30     if (temp == 0) return null;
31     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetInput_4(int id0);
35   public vtkDataSet GetInput(int id0) {
36     long temp = GetInput_4(id0);
37
38     if (temp == 0) return null;
39     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void SetFileName_5(String id0);
43   public void SetFileName(String id0)
44     { SetFileName_5(id0); }
45
46   private native String GetFileName_6();
47   public String GetFileName()
48     { return GetFileName_6(); }
49
50   public vtkOBJWriter() { super(); }
51
52   public vtkOBJWriter(long id) { super(id); }
53   public native long   VTKInit();
54
55 }