]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPolyDataMapper.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkPolyDataMapper.java
1 // java wrapper for vtkPolyDataMapper object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPolyDataMapper extends vtkMapper
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 RenderPiece_2(vtkRenderer id0,vtkActor id1);
19   public void RenderPiece(vtkRenderer id0,vtkActor id1)
20     { RenderPiece_2(id0,id1); }
21
22   private native void Render_3(vtkRenderer id0,vtkActor id1);
23   public void Render(vtkRenderer id0,vtkActor id1)
24     { Render_3(id0,id1); }
25
26   private native void SetInputData_4(vtkPolyData id0);
27   public void SetInputData(vtkPolyData id0)
28     { SetInputData_4(id0); }
29
30   private native long GetInput_5();
31   public vtkPolyData GetInput() {
32     long temp = GetInput_5();
33
34     if (temp == 0) return null;
35     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native void Update_6(int id0);
39   public void Update(int id0)
40     { Update_6(id0); }
41
42   private native void Update_7();
43   public void Update()
44     { Update_7(); }
45
46   private native int Update_8(int id0,vtkInformationVector id1);
47   public int Update(int id0,vtkInformationVector id1)
48     { return Update_8(id0,id1); }
49
50   private native int Update_9(vtkInformation id0);
51   public int Update(vtkInformation id0)
52     { return Update_9(id0); }
53
54   private native void SetPiece_10(int id0);
55   public void SetPiece(int id0)
56     { SetPiece_10(id0); }
57
58   private native int GetPiece_11();
59   public int GetPiece()
60     { return GetPiece_11(); }
61
62   private native void SetNumberOfPieces_12(int id0);
63   public void SetNumberOfPieces(int id0)
64     { SetNumberOfPieces_12(id0); }
65
66   private native int GetNumberOfPieces_13();
67   public int GetNumberOfPieces()
68     { return GetNumberOfPieces_13(); }
69
70   private native void SetNumberOfSubPieces_14(int id0);
71   public void SetNumberOfSubPieces(int id0)
72     { SetNumberOfSubPieces_14(id0); }
73
74   private native int GetNumberOfSubPieces_15();
75   public int GetNumberOfSubPieces()
76     { return GetNumberOfSubPieces_15(); }
77
78   private native void SetGhostLevel_16(int id0);
79   public void SetGhostLevel(int id0)
80     { SetGhostLevel_16(id0); }
81
82   private native int GetGhostLevel_17();
83   public int GetGhostLevel()
84     { return GetGhostLevel_17(); }
85
86   private native double[] GetBounds_18();
87   public double[] GetBounds()
88     { return GetBounds_18(); }
89
90   private native void GetBounds_19(double id0[]);
91   public void GetBounds(double id0[])
92     { GetBounds_19(id0); }
93
94   private native void ShallowCopy_20(vtkAbstractMapper id0);
95   public void ShallowCopy(vtkAbstractMapper id0)
96     { ShallowCopy_20(id0); }
97
98   private native void MapDataArrayToVertexAttribute_21(String id0,String id1,int id2,int id3);
99   public void MapDataArrayToVertexAttribute(String id0,String id1,int id2,int id3)
100     { MapDataArrayToVertexAttribute_21(id0,id1,id2,id3); }
101
102   private native void MapDataArrayToMultiTextureAttribute_22(String id0,String id1,int id2,int id3);
103   public void MapDataArrayToMultiTextureAttribute(String id0,String id1,int id2,int id3)
104     { MapDataArrayToMultiTextureAttribute_22(id0,id1,id2,id3); }
105
106   private native void RemoveVertexAttributeMapping_23(String id0);
107   public void RemoveVertexAttributeMapping(String id0)
108     { RemoveVertexAttributeMapping_23(id0); }
109
110   private native void RemoveAllVertexAttributeMappings_24();
111   public void RemoveAllVertexAttributeMappings()
112     { RemoveAllVertexAttributeMappings_24(); }
113
114   public vtkPolyDataMapper() { super(); }
115
116   public vtkPolyDataMapper(long id) { super(id); }
117   public native long   VTKInit();
118
119 }