www.pudn.com > SurfWareNew06.3.5(LYW).rar > BlendingSurfaces.cpp
// BlendingSurfaces.cpp : implementation file
//
#include "stdafx.h"
#include "surfware.h"
#include "BlendingSurfaces.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// BlendingSurfaces dialog
BlendingSurfaces::BlendingSurfaces(CWnd* pParent /*=NULL*/)
: CDialog(BlendingSurfaces::IDD, pParent)
{
//{{AFX_DATA_INIT(BlendingSurfaces)
m_t = 0.0f;
m_t1 = 0.25f;
m_s = 0.3f;
m_s1 = 0.05f;
m_u = 0.2f;
m_w1 = 0.5f;
//}}AFX_DATA_INIT
}
void BlendingSurfaces::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(BlendingSurfaces)
DDX_Text(pDX, IDC_EDIT1, m_t);
DDX_Text(pDX, IDC_EDIT2, m_t1);
DDX_Text(pDX, IDC_EDIT3, m_s);
DDX_Text(pDX, IDC_EDIT4, m_s1);
DDX_Text(pDX, IDC_EDIT5, m_u);
DDX_Text(pDX, IDC_EDIT6, m_w1);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(BlendingSurfaces, CDialog)
//{{AFX_MSG_MAP(BlendingSurfaces)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// BlendingSurfaces message handlers