00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef _NCCUBE_H
00015 #define _NCCUBE_H
00016
00017 #include "gbldefs.h"
00018 #include "ncotes.h"
00019
00020
00021
00022
00023 class cNwtCotesCube : public cNwtCotes
00024 {
00025 public:
00026 static int ComputeNumPts( sOrder * );
00027 static sNatCoord GetCoord ( sOrder *, int );
00028 static double GetWeight ( sOrder *, int );
00029 cNwtCotesCube( cIntPt *&, sOrder *, cElement *, int );
00030 ~cNwtCotesCube( void );
00031 void SetNatCoord ( void );
00032 int CheckTRMatrix( int, double ** );
00033 };
00034
00035 #endif