www.pudn.com > SurfaceRecon.rar > SpacingSetDlg.cpp
// SpacingSetDlg.cpp : implementation file
//
#include "stdafx.h"
#include "MITKTest.h"
#include "SpacingSetDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSpacingSetDlg dialog
CSpacingSetDlg::CSpacingSetDlg(CWnd* pParent /*=NULL*/)
: CDialog(CSpacingSetDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CSpacingSetDlg)
m_SpacingX = 1.0f;
m_SpacingY = 1.0f;
m_SpacingZ = 1.0f;
//}}AFX_DATA_INIT
}
void CSpacingSetDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSpacingSetDlg)
DDX_Text(pDX, IDC_EDIT_SPACINGX, m_SpacingX);
DDX_Text(pDX, IDC_EDIT_SPACINGY, m_SpacingY);
DDX_Text(pDX, IDC_EDIT_SPACINGZ, m_SpacingZ);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSpacingSetDlg, CDialog)
//{{AFX_MSG_MAP(CSpacingSetDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSpacingSetDlg message handlers