00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _PLFRAME_H
00014 #define _PLFRAME_H
00015
00016 #include "anmodel.h"
00017
00018
00019
00020
00021 class cAnmPlFrame : public cAnModel
00022 {
00023 public:
00024 cAnmPlFrame ( void );
00025 ~cAnmPlFrame ( void ) { }
00026 void DofGlobDir ( int [6] );
00027 void NodalDispl ( int, sNodeDispl *, double * );
00028 void VecTensor ( double *, sTensor * );
00029 void TensorVec ( sTensor *, double * );
00030 void GetSclLabels ( char ** );
00031 void DsaRigBodyVecs( int, sNodeCoord *, sNodeCoord *, int *, int *,
00032 double **, double ** );
00033 void DsaRigBodyMat ( double ** );
00034 };
00035
00036 #endif