// ThinPlate.h: ThinPlate クラスのインターフェイス // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_THINPLATE_H__5AA6029A_79BE_41D4_BA43_B3CCAA086A15__INCLUDED_) #define AFX_THINPLATE_H__5AA6029A_79BE_41D4_BA43_B3CCAA086A15__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Energy.h" #include "MeshData.h" class ThinPlate : public Energy { public: MeshData* mesh; int count; public: void dfunc(float p[], float d[]); float func(float p[]); ThinPlate(); virtual ~ThinPlate(); }; #endif // !defined(AFX_THINPLATE_H__5AA6029A_79BE_41D4_BA43_B3CCAA086A15__INCLUDED_)