dlginputpoints.cpp

来自「Gramham法求解凸包。从最基本数据结构定义开始实现」· C++ 代码 · 共 46 行

CPP
46
字号
// DlgInputPoints.cpp : implementation file
//

#include "stdafx.h"
#include "ConvexHull.h"
#include "DlgInputPoints.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgInputPoints dialog


//##ModelId=443378C80235
CDlgInputPoints::CDlgInputPoints(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgInputPoints::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgInputPoints)
	m_strPoints = _T("");
	//}}AFX_DATA_INIT
}


//##ModelId=443378C8023F
void CDlgInputPoints::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgInputPoints)
	DDX_Text(pDX, IDC_POINTS, m_strPoints);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDlgInputPoints message handlers

⌨️ 快捷键说明

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