⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threedimdlg.cpp

📁 实现了区域填充已经其他画线功能
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -