// java wrapper for vtkDataSet object // package vtk; import vtk.*; public class vtkDataSet extends vtkDataObject { 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 void CopyAttributes_3(vtkDataSet id0); public void CopyAttributes(vtkDataSet id0) { CopyAttributes_3(id0); } private native int GetNumberOfPoints_4(); public int GetNumberOfPoints() { return GetNumberOfPoints_4(); } private native int GetNumberOfCells_5(); public int GetNumberOfCells() { return GetNumberOfCells_5(); } private native double[] GetPoint_6(int id0); public double[] GetPoint(int id0) { return GetPoint_6(id0); } private native void GetPoint_7(int id0,double id1[]); public void GetPoint(int id0,double id1[]) { GetPoint_7(id0,id1); } private native long GetCell_8(int id0); public vtkCell GetCell(int id0) { long temp = GetCell_8(id0); if (temp == 0) return null; return (vtkCell)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void GetCell_9(int id0,vtkGenericCell id1); public void GetCell(int id0,vtkGenericCell id1) { GetCell_9(id0,id1); } private native void GetCellBounds_10(int id0,double id1[]); public void GetCellBounds(int id0,double id1[]) { GetCellBounds_10(id0,id1); } private native int GetCellType_11(int id0); public int GetCellType(int id0) { return GetCellType_11(id0); } private native void GetCellTypes_12(vtkCellTypes id0); public void GetCellTypes(vtkCellTypes id0) { GetCellTypes_12(id0); } private native void GetCellPoints_13(int id0,vtkIdList id1); public void GetCellPoints(int id0,vtkIdList id1) { GetCellPoints_13(id0,id1); } private native void GetPointCells_14(int id0,vtkIdList id1); public void GetPointCells(int id0,vtkIdList id1) { GetPointCells_14(id0,id1); } private native void GetCellNeighbors_15(int id0,vtkIdList id1,vtkIdList id2); public void GetCellNeighbors(int id0,vtkIdList id1,vtkIdList id2) { GetCellNeighbors_15(id0,id1,id2); } private native int FindPoint_16(double id0,double id1,double id2); public int FindPoint(double id0,double id1,double id2) { return FindPoint_16(id0,id1,id2); } private native int FindPoint_17(double id0[]); public int FindPoint(double id0[]) { return FindPoint_17(id0); } private native int GetMTime_18(); public int GetMTime() { return GetMTime_18(); } private native long GetCellData_19(); public vtkCellData GetCellData() { long temp = GetCellData_19(); if (temp == 0) return null; return (vtkCellData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetPointData_20(); public vtkPointData GetPointData() { long temp = GetPointData_20(); if (temp == 0) return null; return (vtkPointData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void Squeeze_21(); public void Squeeze() { Squeeze_21(); } private native void ComputeBounds_22(); public void ComputeBounds() { ComputeBounds_22(); } private native double[] GetBounds_23(); public double[] GetBounds() { return GetBounds_23(); } private native void GetBounds_24(double id0[]); public void GetBounds(double id0[]) { GetBounds_24(id0); } private native double[] GetCenter_25(); public double[] GetCenter() { return GetCenter_25(); } private native void GetCenter_26(double id0[]); public void GetCenter(double id0[]) { GetCenter_26(id0); } private native double GetLength_27(); public double GetLength() { return GetLength_27(); } private native void Initialize_28(); public void Initialize() { Initialize_28(); } private native void GetScalarRange_29(double id0[]); public void GetScalarRange(double id0[]) { GetScalarRange_29(id0); } private native double[] GetScalarRange_30(); public double[] GetScalarRange() { return GetScalarRange_30(); } private native int GetMaxCellSize_31(); public int GetMaxCellSize() { return GetMaxCellSize_31(); } private native int GetActualMemorySize_32(); public int GetActualMemorySize() { return GetActualMemorySize_32(); } private native int GetDataObjectType_33(); public int GetDataObjectType() { return GetDataObjectType_33(); } private native void ShallowCopy_34(vtkDataObject id0); public void ShallowCopy(vtkDataObject id0) { ShallowCopy_34(id0); } private native void DeepCopy_35(vtkDataObject id0); public void DeepCopy(vtkDataObject id0) { DeepCopy_35(id0); } private native int CheckAttributes_36(); public int CheckAttributes() { return CheckAttributes_36(); } private native void GenerateGhostLevelArray_37(); public void GenerateGhostLevelArray() { GenerateGhostLevelArray_37(); } private native long GetData_38(vtkInformation id0); public vtkDataSet GetData(vtkInformation id0) { long temp = GetData_38(id0); if (temp == 0) return null; return (vtkDataSet)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetData_39(vtkInformationVector id0,int id1); public vtkDataSet GetData(vtkInformationVector id0,int id1) { long temp = GetData_39(id0,id1); if (temp == 0) return null; return (vtkDataSet)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetAttributesAsFieldData_40(int id0); public vtkFieldData GetAttributesAsFieldData(int id0) { long temp = GetAttributesAsFieldData_40(id0); if (temp == 0) return null; return (vtkFieldData)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int GetNumberOfElements_41(int id0); public int GetNumberOfElements(int id0) { return GetNumberOfElements_41(id0); } public vtkDataSet() { super(); } public vtkDataSet(long id) { super(id); } }