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 #ifndef _SHPTRI10_H
00039 #define _SHPTRI10_H
00040
00041 #include "gbldefs.h"
00042 #include "shpplane.h"
00043
00044
00045
00046
00047 class cShapeTria10 : public cPlaneShape
00048 {
00049 public:
00050 cShapeTria10 ( void );
00051 virtual ~cShapeTria10 ( void );
00052 int GetMapOrder ( void ) { return 3; }
00053 void MapFunc ( sNatCoord *, double * );
00054 void ShapeFunc ( sNatCoord *, double * );
00055 void DerivMapRST ( sNatCoord *, sDerivNat * );
00056 void DerivShpRST ( sNatCoord *, sDerivNat * );
00057 int GetEdge ( int *, eShapeType *, int *, int * );
00058 int GetFace ( int *, eShapeType *, int *, int * );
00059 void GetNatCoordMapNode( sNatCoord * );
00060 void PolFunc ( sNodeCoord *, double * );
00061 void DerivPolFunc ( sNodeCoord *, sDerivCart * );
00062 int VerCorNode ( int );
00063 int VerEdgeNode ( int, int );
00064 };
00065
00066 #endif