/************************************************************************ Yutaka Ohtake Energy.cpp Energy to be minizized by Powell method. Copyright (c) 1999-2001 The University of Aizu. All Rights Reserved. ************************************************************************/ #include "stdafx.h" #include "MeshEditor.h" #include "Energy.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // \z/ ////////////////////////////////////////////////////////////////////// Energy::Energy() { } Energy::~Energy() { } float Energy::func(float p[]) { return 0; } void Energy::dfunc(float p[], float d[]) { }