1 // java wrapper for vtkUniformGrid object
7 public class vtkUniformGrid extends vtkImageData
10 private native int IsTypeOf_0(String id0);
11 public int IsTypeOf(String id0)
12 { return IsTypeOf_0(id0); }
14 private native int IsA_1(String id0);
15 public int IsA(String id0)
16 { return IsA_1(id0); }
18 private native void CopyStructure_2(vtkDataSet id0);
19 public void CopyStructure(vtkDataSet id0)
20 { CopyStructure_2(id0); }
22 private native int GetDataObjectType_3();
23 public int GetDataObjectType()
24 { return GetDataObjectType_3(); }
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);
30 if (temp == 0) return null;
31 return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
34 private native long GetCell_5(int id0);
35 public vtkCell GetCell(int id0) {
36 long temp = GetCell_5(id0);
38 if (temp == 0) return null;
39 return (vtkCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
42 private native void GetCell_6(int id0,vtkGenericCell id1);
43 public void GetCell(int id0,vtkGenericCell id1)
44 { GetCell_6(id0,id1); }
46 private native int GetCellType_7(int id0);
47 public int GetCellType(int id0)
48 { return GetCellType_7(id0); }
50 private native void GetCellPoints_8(int id0,vtkIdList id1);
51 public void GetCellPoints(int id0,vtkIdList id1)
52 { GetCellPoints_8(id0,id1); }
54 private native void GetPointCells_9(int id0,vtkIdList id1);
55 public void GetPointCells(int id0,vtkIdList id1)
56 { GetPointCells_9(id0,id1); }
58 private native void Initialize_10();
59 public void Initialize()
62 private native int GetMaxCellSize_11();
63 public int GetMaxCellSize()
64 { return GetMaxCellSize_11(); }
66 private native int GetGridDescription_12();
67 public int GetGridDescription()
68 { return GetGridDescription_12(); }
70 private native void BlankPoint_13(int id0);
71 public void BlankPoint(int id0)
72 { BlankPoint_13(id0); }
74 private native void UnBlankPoint_14(int id0);
75 public void UnBlankPoint(int id0)
76 { UnBlankPoint_14(id0); }
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); }
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); }
86 private native void BlankCell_17(int id0);
87 public void BlankCell(int id0)
88 { BlankCell_17(id0); }
90 private native void UnBlankCell_18(int id0);
91 public void UnBlankCell(int id0)
92 { UnBlankCell_18(id0); }
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); }
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); }
102 private native boolean HasAnyBlankCells_21();
103 public boolean HasAnyBlankCells()
104 { return HasAnyBlankCells_21(); }
106 private native boolean HasAnyBlankPoints_22();
107 public boolean HasAnyBlankPoints()
108 { return HasAnyBlankPoints_22(); }
110 private native int IsPointVisible_23(int id0);
111 public int IsPointVisible(int id0)
112 { return IsPointVisible_23(id0); }
114 private native int IsCellVisible_24(int id0);
115 public int IsCellVisible(int id0)
116 { return IsCellVisible_24(id0); }
118 private native long NewImageDataCopy_25();
119 public vtkImageData NewImageDataCopy() {
120 long temp = NewImageDataCopy_25();
122 if (temp == 0) return null;
123 return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
126 private native long GetData_26(vtkInformation id0);
127 public vtkUniformGrid GetData(vtkInformation id0) {
128 long temp = GetData_26(id0);
130 if (temp == 0) return null;
131 return (vtkUniformGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
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);
138 if (temp == 0) return null;
139 return (vtkUniformGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
142 public vtkUniformGrid() { super(); }
144 public vtkUniformGrid(long id) { super(id); }
145 public native long VTKInit();