// java wrapper for vtkHexahedron object // package vtk; import vtk.*; public class vtkHexahedron extends vtkCell3D { 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 int GetCellType_2(); public int GetCellType() { return GetCellType_2(); } private native int GetNumberOfEdges_3(); public int GetNumberOfEdges() { return GetNumberOfEdges_3(); } private native int GetNumberOfFaces_4(); public int GetNumberOfFaces() { return GetNumberOfFaces_4(); } private native long GetEdge_5(int id0); public vtkCell GetEdge(int id0) { long temp = GetEdge_5(id0); if (temp == 0) return null; return (vtkCell)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetFace_6(int id0); public vtkCell GetFace(int id0) { long temp = GetFace_6(id0); if (temp == 0) return null; return (vtkCell)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native int CellBoundary_7(int id0,double id1[],vtkIdList id2); public int CellBoundary(int id0,double id1[],vtkIdList id2) { return CellBoundary_7(id0,id1,id2); } private native void Contour_8(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkCellArray id4,vtkCellArray id5,vtkPointData id6,vtkPointData id7,vtkCellData id8,int id9,vtkCellData id10); public void Contour(double id0,vtkDataArray id1,vtkIncrementalPointLocator id2,vtkCellArray id3,vtkCellArray id4,vtkCellArray id5,vtkPointData id6,vtkPointData id7,vtkCellData id8,int id9,vtkCellData id10) { Contour_8(id0,id1,id2,id3,id4,id5,id6,id7,id8,id9,id10); } private native int Triangulate_9(int id0,vtkIdList id1,vtkPoints id2); public int Triangulate(int id0,vtkIdList id1,vtkPoints id2) { return Triangulate_9(id0,id1,id2); } private native void InterpolationFunctions_10(double id0[],double id1[]); public void InterpolationFunctions(double id0[],double id1[]) { InterpolationFunctions_10(id0,id1); } private native void InterpolationDerivs_11(double id0[],double id1[]); public void InterpolationDerivs(double id0[],double id1[]) { InterpolationDerivs_11(id0,id1); } private native void InterpolateFunctions_12(double id0[],double id1[]); public void InterpolateFunctions(double id0[],double id1[]) { InterpolateFunctions_12(id0,id1); } private native void InterpolateDerivs_13(double id0[],double id1[]); public void InterpolateDerivs(double id0[],double id1[]) { InterpolateDerivs_13(id0,id1); } private native int[] GetEdgeArray_14(int id0); public int[] GetEdgeArray(int id0) { return GetEdgeArray_14(id0); } private native int[] GetFaceArray_15(int id0); public int[] GetFaceArray(int id0) { return GetFaceArray_15(id0); } public vtkHexahedron() { super(); } public vtkHexahedron(long id) { super(id); } public native long VTKInit(); }