00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00035 #ifndef __vtkTetra_h
00036 #define __vtkTetra_h
00037
00038 #include "vtkCell3D.h"
00039
00040 class vtkLine;
00041 class vtkTriangle;
00042 class vtkUnstructuredGrid;
00043
00044 class VTK_FILTERING_EXPORT vtkTetra : public vtkCell3D
00045 {
00046 public:
00047 static vtkTetra *New();
00048 vtkTypeRevisionMacro(vtkTetra,vtkCell3D);
00049 void PrintSelf(ostream& os, vtkIndent indent);
00050
00052
00053 virtual void GetEdgePoints(int edgeId, int* &pts);
00054 virtual void GetFacePoints(int faceId, int* &pts);
00056
00058
00059 int GetCellType() {return VTK_TETRA;}
00060 int GetNumberOfEdges() {return 6;}
00061 int GetNumberOfFaces() {return 4;}
00062 vtkCell *GetEdge(int edgeId);
00063 vtkCell *GetFace(int faceId);
00064 void Contour(double value, vtkDataArray *cellScalars,
00065 vtkPointLocator *locator, vtkCellArray *verts,
00066 vtkCellArray *lines, vtkCellArray *polys,
00067 vtkPointData *inPd, vtkPointData *outPd,
00068 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd);
00069 void Clip(double value, vtkDataArray *cellScalars,
00070 vtkPointLocator *locator, vtkCellArray *connectivity,
00071 vtkPointData *inPd, vtkPointData *outPd,
00072 vtkCellData *inCd, vtkIdType cellId, vtkCellData *outCd,
00073 int insideOut);
00074 int EvaluatePosition(double x[3], double* closestPoint,
00075 int& subId, double pcoords[3],
00076 double& dist2, double *weights);
00077 void EvaluateLocation(int& subId, double pcoords[3], double x[3],
00078 double *weights);
00079 int IntersectWithLine(double p1[3], double p2[3], double tol, double& t,
00080 double x[3], double pcoords[3], int& subId);
00081 int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts);
00082 void Derivatives(int subId, double pcoords[3], double *values,
00083 int dim, double *derivs);
00084 virtual double *GetParametricCoords();
00086
00090 int CellBoundary(int subId, double pcoords[3], vtkIdList *pts);
00091
00093 int GetParametricCenter(double pcoords[3]);
00094
00097 double GetParametricDistance(double pcoords[3]);
00098
00100
00101 static void TetraCenter(double p1[3], double p2[3], double p3[3], double p4[3],
00102 double center[3]);
00104
00106
00109 static double Circumsphere(double p1[3], double p2[3], double p3[3],
00110 double p4[3], double center[3]);
00112
00114
00117 static double Insphere(double p1[3], double p2[3], double p3[3],
00118 double p4[3], double center[3]);
00120
00122
00133 static int BarycentricCoords(double x[3], double x1[3], double x2[3],
00134 double x3[3], double x4[3], double bcoords[4]);
00136
00138
00140 static double ComputeVolume(double p1[3], double p2[3], double p3[3],
00141 double p4[3]);
00143
00147 int JacobianInverse(double **inverse, double derivs[12]);
00148
00150
00151 static void InterpolationFunctions(double pcoords[3], double weights[4]);
00152
00153
00154 static void InterpolationDerivs(double pcoords[3], double derivs[12]);
00155
00156
00157
00158 virtual void InterpolateFunctions(double pcoords[3], double weights[4])
00159 {
00160 vtkTetra::InterpolationFunctions(pcoords,weights);
00161 }
00162 virtual void InterpolateDerivs(double pcoords[3], double derivs[12])
00163 {
00164 vtkTetra::InterpolationDerivs(pcoords,derivs);
00165 }
00167
00169
00171 static int *GetEdgeArray(int edgeId);
00172 static int *GetFaceArray(int faceId);
00174
00175 protected:
00176 vtkTetra();
00177 ~vtkTetra();
00178
00179 vtkLine *Line;
00180 vtkTriangle *Triangle;
00181
00182 private:
00183 vtkTetra(const vtkTetra&);
00184 void operator=(const vtkTetra&);
00185 };
00186
00187 inline int vtkTetra::GetParametricCenter(double pcoords[3])
00188 {
00189 pcoords[0] = pcoords[1] = pcoords[2] = 0.25;
00190 return 0;
00191 }
00192
00193 #endif
00194
00195
00196