// java wrapper for vtkUniformGrid object // package vtk; import vtk.*; public class vtkUniformGrid extends vtkImageData { private native String GetClassName_0(); public String GetClassName() { return GetClassName_0(); } private native int IsA_1(String id0); public int IsA(String id0) { return IsA_1(id0); } private native void CopyStructure_2(vtkDataSet id0); public void CopyStructure(vtkDataSet id0) { CopyStructure_2(id0); } private native int GetDataObjectType_3(); public int GetDataObjectType() { return GetDataObjectType_3(); } private native long GetCell_4(int id0); public vtkCell GetCell(int id0) { long temp = GetCell_4(id0); if (temp == 0) return null; return (vtkCell)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void GetCell_5(int id0,vtkGenericCell id1); public void GetCell(int id0,vtkGenericCell id1) { GetCell_5(id0,id1); } private native int GetCellType_6(int id0); public int GetCellType(int id0) { return GetCellType_6(id0); } private native void GetCellPoints_7(int id0,vtkIdList id1); public void GetCellPoints(int id0,vtkIdList id1) { GetCellPoints_7(id0,id1); } private native void GetPointCells_8(int id0,vtkIdList id1); public void GetPointCells(int id0,vtkIdList id1) { GetPointCells_8(id0,id1); } private native void Initialize_9(); public void Initialize() { Initialize_9(); } private native int GetMaxCellSize_10(); public int GetMaxCellSize() { return GetMaxCellSize_10(); } private native void ShallowCopy_11(vtkDataObject id0); public void ShallowCopy(vtkDataObject id0) { ShallowCopy_11(id0); } private native void DeepCopy_12(vtkDataObject id0); public void DeepCopy(vtkDataObject id0) { DeepCopy_12(id0); } private native void BlankPoint_13(int id0); public void BlankPoint(int id0) { BlankPoint_13(id0); } private native void UnBlankPoint_14(int id0); public void UnBlankPoint(int id0) { UnBlankPoint_14(id0); } private native void BlankCell_15(int id0); public void BlankCell(int id0) { BlankCell_15(id0); } private native void UnBlankCell_16(int id0); public void UnBlankCell(int id0) { UnBlankCell_16(id0); } private native long GetPointVisibilityArray_17(); public vtkUnsignedCharArray GetPointVisibilityArray() { long temp = GetPointVisibilityArray_17(); if (temp == 0) return null; return (vtkUnsignedCharArray)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetPointVisibilityArray_18(vtkUnsignedCharArray id0); public void SetPointVisibilityArray(vtkUnsignedCharArray id0) { SetPointVisibilityArray_18(id0); } private native long GetCellVisibilityArray_19(); public vtkUnsignedCharArray GetCellVisibilityArray() { long temp = GetCellVisibilityArray_19(); if (temp == 0) return null; return (vtkUnsignedCharArray)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void SetCellVisibilityArray_20(vtkUnsignedCharArray id0); public void SetCellVisibilityArray(vtkUnsignedCharArray id0) { SetCellVisibilityArray_20(id0); } private native int IsPointVisible_21(int id0); public int IsPointVisible(int id0) { return IsPointVisible_21(id0); } private native int IsCellVisible_22(int id0); public int IsCellVisible(int id0) { return IsCellVisible_22(id0); } private native int GetPointBlanking_23(); public int GetPointBlanking() { return GetPointBlanking_23(); } private native int GetCellBlanking_24(); public int GetCellBlanking() { return GetCellBlanking_24(); } private native long NewImageDataCopy_25(); public vtkImageData NewImageDataCopy() { long temp = NewImageDataCopy_25(); if (temp == 0) return null; return (vtkImageData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetData_26(vtkInformation id0); public vtkUniformGrid GetData(vtkInformation id0) { long temp = GetData_26(id0); if (temp == 0) return null; return (vtkUniformGrid)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetData_27(vtkInformationVector id0,int id1); public vtkUniformGrid GetData(vtkInformationVector id0,int id1) { long temp = GetData_27(id0,id1); if (temp == 0) return null; return (vtkUniformGrid)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkUniformGrid() { super(); } public vtkUniformGrid(long id) { super(id); } public native long VTKInit(); }