threedimdlg.cpp

来自「实现了区域填充已经其他画线功能」· C++ 代码 · 共 54 行

CPP
54
字号
// ThreeDimDlg.cpp : implementation file
//

#include "stdafx.h"
#include "GraphExp.h"
#include "ThreeDimDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CThreeDimDlg dialog


CThreeDimDlg::CThreeDimDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CThreeDimDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CThreeDimDlg)
	m_moveX = 0;
	m_moveY = 0;
	m_moveZ = 0;
	m_roundX = 0.0f;
	m_roundY = 0.0f;
	m_roundZ = 0;
	//}}AFX_DATA_INIT
}


void CThreeDimDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CThreeDimDlg)
	DDX_Text(pDX, IDC_MOVEX, m_moveX);
	DDX_Text(pDX, IDC_MOVEY, m_moveY);
	DDX_Text(pDX, IDC_MOVEZ, m_moveZ);
	DDX_Text(pDX, IDC_ROUNDX, m_roundX);
	DDX_Text(pDX, IDC_ROUNDY, m_roundY);
	DDX_Text(pDX, IDC_ROUNDZ, m_roundZ);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CThreeDimDlg, CDialog)
	//{{AFX_MSG_MAP(CThreeDimDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CThreeDimDlg message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?