00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00053 #ifndef __vtkHexahedron_h
00054 #define __vtkHexahedron_h
00055
00056 #include "vtkCell.h"
00057 #include "vtkLine.h"
00058 #include "vtkQuad.h"
00059
00060 class VTK_EXPORT vtkHexahedron : public vtkCell
00061 {
00062 public:
00063 static vtkHexahedron *New();
00064 vtkTypeMacro(vtkHexahedron,vtkCell);
00065
00067 vtkCell *MakeObject();
00068 int GetCellType() {return VTK_HEXAHEDRON;};
00069 int GetCellDimension() {return 3;};
00070 int GetNumberOfEdges() {return 12;};
00071 int GetNumberOfFaces() {return 6;};
00072 vtkCell *GetEdge(int edgeId);
00073 vtkCell *GetFace(int faceId);
00074 static int *GetFaceArray(int faceId);
00075 int CellBoundary(int subId, float pcoords[3], vtkIdList *pts);
00076 void Contour(float value, vtkScalars *cellScalars,
00077 vtkPointLocator *locator, vtkCellArray *verts,
00078 vtkCellArray *lines, vtkCellArray *polys,
00079 vtkPointData *inPd, vtkPointData *outPd,
00080 vtkCellData *inCd, int cellId, vtkCellData *outCd);
00081 void Clip(float value, vtkScalars *cellScalars,
00082 vtkPointLocator *locator, vtkCellArray *tetras,
00083 vtkPointData *inPd, vtkPointData *outPd,
00084 vtkCellData *inCd, int cellId, vtkCellData *outCd, int insideOut);
00085 int EvaluatePosition(float x[3], float* closestPoint,
00086 int& subId, float pcoords[3],
00087 float& dist2, float *weights);
00088 void EvaluateLocation(int& subId, float pcoords[3], float x[3],
00089 float *weights);
00090 int IntersectWithLine(float p1[3], float p2[3], float tol, float& t,
00091 float x[3], float pcoords[3], int& subId);
00092 int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts);
00093 void Derivatives(int subId, float pcoords[3], float *values,
00094 int dim, float *derivs);
00095
00097 static void InterpolationFunctions(float pcoords[3], float weights[8]);
00098 static void InterpolationDerivs(float pcoords[3], float derivs[24]);
00099
00103 void JacobianInverse(float pcoords[3], double **inverse, float derivs[24]);
00104
00105 #ifndef VTK_REMOVE_LEGACY_CODE
00106
00107 int CellBoundary(int subId, float pcoords[3], vtkIdList &pts)
00108 {VTK_LEGACY_METHOD(CellBoundary,"3.2"); return this->CellBoundary(subId, pcoords, &pts);}
00109 int Triangulate(int index, vtkIdList &ptIds, vtkPoints &pts)
00110 {VTK_LEGACY_METHOD(Triangulate,"3.2"); return this->Triangulate(index, &ptIds, &pts);}
00111 #endif
00112
00113 protected:
00114 vtkHexahedron();
00115 ~vtkHexahedron();
00116 vtkHexahedron(const vtkHexahedron&) {};
00117 void operator=(const vtkHexahedron&) {};
00118
00119 vtkLine *Line;
00120 vtkQuad *Quad;
00121
00122 };
00123
00124 #endif
00125
00126