VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPentagonalPrism.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00037 #ifndef __vtkPentagonalPrism_h 00038 #define __vtkPentagonalPrism_h 00039 00040 #include "vtkCommonDataModelModule.h" // For export macro 00041 #include "vtkCell3D.h" 00042 00043 class vtkLine; 00044 class vtkPolygon; 00045 class vtkQuad; 00046 class vtkTriangle; 00047 00048 class VTKCOMMONDATAMODEL_EXPORT vtkPentagonalPrism : public vtkCell3D 00049 { 00050 public: 00051 static vtkPentagonalPrism *New(); 00052 vtkTypeMacro(vtkPentagonalPrism,vtkCell3D); 00053 void PrintSelf(ostream& os, vtkIndent indent); 00054 00056 00057 virtual void GetEdgePoints(int edgeId, int* &pts); 00058 virtual void GetFacePoints(int faceId, int* &pts); 00060 00062 00063 int GetCellType() {return VTK_PENTAGONAL_PRISM;}; 00064 int GetCellDimension() {return 3;}; 00065 int GetNumberOfEdges() {return 15;}; 00066 int GetNumberOfFaces() {return 7;}; 00067 vtkCell *GetEdge(int edgeId); 00068 vtkCell *GetFace(int faceId); 00069 int CellBoundary(int subId, double pcoords[3], vtkIdList *pts); 00071 00072 int EvaluatePosition(double x[3], double* closestPoint, 00073 int& subId, double pcoords[3], 00074 double& dist2, double *weights); 00075 void EvaluateLocation(int& subId, double pcoords[3], double x[3], 00076 double *weights); 00077 int IntersectWithLine(double p1[3], double p2[3], double tol, double& t, 00078 double x[3], double pcoords[3], int& subId); 00079 int Triangulate(int index, vtkIdList *ptIds, vtkPoints *pts); 00080 void Derivatives(int subId, double pcoords[3], double *values, 00081 int dim, double *derivs); 00082 double *GetParametricCoords(); 00083 00085 int GetParametricCenter(double pcoords[3]); 00086 00089 static void InterpolationFunctions(double pcoords[3], double weights[10]); 00092 static void InterpolationDerivs(double pcoords[3], double derivs[30]); 00094 00096 virtual void InterpolateFunctions(double pcoords[3], double weights[10]) 00097 { 00098 vtkPentagonalPrism::InterpolationFunctions(pcoords, weights); 00099 } 00100 virtual void InterpolateDerivs(double pcoords[3], double derivs[30]) 00101 { 00102 vtkPentagonalPrism::InterpolationDerivs(pcoords, derivs); 00103 } 00105 00107 00109 static int *GetEdgeArray(int edgeId); 00110 static int *GetFaceArray(int faceId); 00112 00116 void JacobianInverse(double pcoords[3], double **inverse, double derivs[30]); 00117 00118 protected: 00119 vtkPentagonalPrism(); 00120 ~vtkPentagonalPrism(); 00121 00122 vtkLine *Line; 00123 vtkQuad *Quad; 00124 vtkPolygon *Polygon; 00125 vtkTriangle *Triangle; 00126 00127 private: 00128 vtkPentagonalPrism(const vtkPentagonalPrism&); // Not implemented. 00129 void operator=(const vtkPentagonalPrism&); // Not implemented. 00130 }; 00131 00132 //---------------------------------------------------------------------------- 00133 inline int vtkPentagonalPrism::GetParametricCenter(double pcoords[3]) 00134 { 00135 pcoords[0] = pcoords[1] = 0.5; 00136 pcoords[2] = 0.5; 00137 00138 return 0; 00139 } 00140 #endif 00141 00142