Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __VOLSURFUSER_HXX__
00021 #define __VOLSURFUSER_HXX__
00022
00023 #include "NormalizedUnstructuredMesh.hxx"
00024
00025 namespace INTERP_KERNEL
00026 {
00027 template<class ConnType, NumberingPolicy numPolConn, int SPACEDIM>
00028 double computeVolSurfOfCell(NormalizedCellType type, const ConnType *connec, int lgth, const double *coords);
00029
00030 template<class ConnType, NumberingPolicy numPolConn>
00031 double computeVolSurfOfCell2(NormalizedCellType type, const ConnType *connec, int lgth, const double *coords, int spaceDim);
00032
00033 template<class ConnType, NumberingPolicy numPolConn, int SPACEDIM>
00034 void computeBarycenter(NormalizedCellType type, const ConnType *connec, int lgth, const double *coords, double *res);
00035
00036 template<class ConnType, NumberingPolicy numPolConn>
00037 void computeBarycenter2(NormalizedCellType type, const ConnType *connec, int lgth, const double *coords, int spaceDim, double *res);
00038 }
00039
00040 #endif