]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkUniformGrid.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkUniformGrid.java
1 // java wrapper for vtkUniformGrid object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkUniformGrid extends vtkImageData
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 CopyStructure_2(vtkDataSet id0);
19   public void CopyStructure(vtkDataSet id0)
20     { CopyStructure_2(id0); }
21
22   private native int GetDataObjectType_3();
23   public int GetDataObjectType()
24     { return GetDataObjectType_3(); }
25
26   private native long GetCell_4(int id0,int id1,int id2);
27   public vtkCell GetCell(int id0,int id1,int id2) {
28     long temp = GetCell_4(id0,id1,id2);
29
30     if (temp == 0) return null;
31     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetCell_5(int id0);
35   public vtkCell GetCell(int id0) {
36     long temp = GetCell_5(id0);
37
38     if (temp == 0) return null;
39     return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native void GetCell_6(int id0,vtkGenericCell id1);
43   public void GetCell(int id0,vtkGenericCell id1)
44     { GetCell_6(id0,id1); }
45
46   private native int GetCellType_7(int id0);
47   public int GetCellType(int id0)
48     { return GetCellType_7(id0); }
49
50   private native void GetCellPoints_8(int id0,vtkIdList id1);
51   public void GetCellPoints(int id0,vtkIdList id1)
52     { GetCellPoints_8(id0,id1); }
53
54   private native void GetPointCells_9(int id0,vtkIdList id1);
55   public void GetPointCells(int id0,vtkIdList id1)
56     { GetPointCells_9(id0,id1); }
57
58   private native void Initialize_10();
59   public void Initialize()
60     { Initialize_10(); }
61
62   private native int GetMaxCellSize_11();
63   public int GetMaxCellSize()
64     { return GetMaxCellSize_11(); }
65
66   private native int GetGridDescription_12();
67   public int GetGridDescription()
68     { return GetGridDescription_12(); }
69
70   private native void BlankPoint_13(int id0);
71   public void BlankPoint(int id0)
72     { BlankPoint_13(id0); }
73
74   private native void UnBlankPoint_14(int id0);
75   public void UnBlankPoint(int id0)
76     { UnBlankPoint_14(id0); }
77
78   private native void BlankPoint_15(int id0,int id1,int id2);
79   public void BlankPoint(int id0,int id1,int id2)
80     { BlankPoint_15(id0,id1,id2); }
81
82   private native void UnBlankPoint_16(int id0,int id1,int id2);
83   public void UnBlankPoint(int id0,int id1,int id2)
84     { UnBlankPoint_16(id0,id1,id2); }
85
86   private native void BlankCell_17(int id0);
87   public void BlankCell(int id0)
88     { BlankCell_17(id0); }
89
90   private native void UnBlankCell_18(int id0);
91   public void UnBlankCell(int id0)
92     { UnBlankCell_18(id0); }
93
94   private native void BlankCell_19(int id0,int id1,int id2);
95   public void BlankCell(int id0,int id1,int id2)
96     { BlankCell_19(id0,id1,id2); }
97
98   private native void UnBlankCell_20(int id0,int id1,int id2);
99   public void UnBlankCell(int id0,int id1,int id2)
100     { UnBlankCell_20(id0,id1,id2); }
101
102   private native boolean HasAnyBlankCells_21();
103   public boolean HasAnyBlankCells()
104     { return HasAnyBlankCells_21(); }
105
106   private native boolean HasAnyBlankPoints_22();
107   public boolean HasAnyBlankPoints()
108     { return HasAnyBlankPoints_22(); }
109
110   private native int IsPointVisible_23(int id0);
111   public int IsPointVisible(int id0)
112     { return IsPointVisible_23(id0); }
113
114   private native int IsCellVisible_24(int id0);
115   public int IsCellVisible(int id0)
116     { return IsCellVisible_24(id0); }
117
118   private native long NewImageDataCopy_25();
119   public vtkImageData NewImageDataCopy() {
120     long temp = NewImageDataCopy_25();
121
122     if (temp == 0) return null;
123     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
124 }
125
126   private native long GetData_26(vtkInformation id0);
127   public vtkUniformGrid GetData(vtkInformation id0) {
128     long temp = GetData_26(id0);
129
130     if (temp == 0) return null;
131     return (vtkUniformGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
132 }
133
134   private native long GetData_27(vtkInformationVector id0,int id1);
135   public vtkUniformGrid GetData(vtkInformationVector id0,int id1) {
136     long temp = GetData_27(id0,id1);
137
138     if (temp == 0) return null;
139     return (vtkUniformGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
140 }
141
142   public vtkUniformGrid() { super(); }
143
144   public vtkUniformGrid(long id) { super(id); }
145   public native long   VTKInit();
146
147 }