|
FEBio
1.5.0
|
00001 // FEBox.h: interface for the FEBox class. 00002 // 00004 00005 #if !defined(AFX_FEBOX_H__1ABC33AE_1143_4836_A943_4AEA8D51704E__INCLUDED_) 00006 #define AFX_FEBOX_H__1ABC33AE_1143_4836_A943_4AEA8D51704E__INCLUDED_ 00007 00008 #if _MSC_VER > 1000 00009 #pragma once 00010 #endif // _MSC_VER > 1000 00011 00012 #include "FEMesh.h" 00013 00014 class FEBox : public FEMesh 00015 { 00016 public: 00017 FEBox(); 00018 virtual ~FEBox(); 00019 00020 void Create(int nx, int ny, int nz, vec3d r0, vec3d r1, int nhex = FE_HEX); 00021 }; 00022 00023 #endif // !defined(AFX_FEBOX_H__1ABC33AE_1143_4836_A943_4AEA8D51704E__INCLUDED_)
1.7.5.1