www.pudn.com > SurfWareNew06.3.5(LYW).rar > BlendingCurves.cpp
// BlendingCurves.cpp : implementation file
//
#include "stdafx.h"
#include "surfware.h"
#include "BlendingCurves.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// BlendingCurves dialog
BlendingCurves::BlendingCurves(CWnd* pParent /*=NULL*/)
: CDialog(BlendingCurves::IDD, pParent)
{
//{{AFX_DATA_INIT(BlendingCurves)
m_u = 0.5f;
m_n = 3;
m_w = 0.8f;
//}}AFX_DATA_INIT
}
void BlendingCurves::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(BlendingCurves)
DDX_Text(pDX, IDC_EDIT1, m_u);
DDX_Text(pDX, IDC_EDIT2, m_n);
DDX_Text(pDX, IDC_EDIT3, m_w);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(BlendingCurves, CDialog)
//{{AFX_MSG_MAP(BlendingCurves)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// BlendingCurves message handlers