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

📄 dlg_cur_value.cpp

📁 本程序实现besur算法
💻 CPP
字号:
// DLG_CUR_VALUE.cpp : implementation file
//

#include "stdafx.h"
#include "Besur.h"
#include "DLG_CUR_VALUE.h"

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

/////////////////////////////////////////////////////////////////////////////
// DLG_CUR_VALUE dialog


DLG_CUR_VALUE::DLG_CUR_VALUE(CWnd* pParent /*=NULL*/)
	: CDialog(DLG_CUR_VALUE::IDD, pParent)
{
	//{{AFX_DATA_INIT(DLG_CUR_VALUE)
	m_P0X = 0.0;
	m_P0Z = 0.0;
	m_P0Y = 0.0;
	m_P1X = 0.0;
	m_P1Y = 0.0;
	m_P1Z = 0.0;
	m_P2X = 0.0;
	m_P2Y = 0.0;
	m_P2Z = 0.0;
	m_P3X = 0.0;
	m_P3Y = 0.0;
	m_P3Z = 0.0;
	m_P4X = 0.0;
	m_P4Y = 0.0;
	m_P4Z = 0.0;
	//}}AFX_DATA_INIT
	m_p[0].x=m_P0X;	m_p[0].y=m_P0Y;	m_p[0].z=m_P0Z;
	m_p[1].x=m_P1X;	m_p[1].y=m_P1Y;	m_p[1].z=m_P1Z;
	m_p[2].x=m_P2X;	m_p[2].y=m_P2Y;	m_p[2].z=m_P2Z;
	m_p[3].x=m_P3X;	m_p[3].y=m_P3Y;	m_p[3].z=m_P3Z;
	m_p[4].x=m_P4X;	m_p[4].y=m_P4Y;	m_p[4].z=m_P4Z;
}


void DLG_CUR_VALUE::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(DLG_CUR_VALUE)
	DDX_Text(pDX, IDC_EDIT0X, m_P0X);
	DDX_Text(pDX, IDC_EDIT0Z, m_P0Z);
	DDX_Text(pDX, IDC_EDIT0Y, m_P0Y);
	DDX_Text(pDX, IDC_EDIT1X, m_P1X);
	DDX_Text(pDX, IDC_EDIT1Y, m_P1Y);
	DDX_Text(pDX, IDC_EDIT1Z, m_P1Z);
	DDX_Text(pDX, IDC_EDIT2X, m_P2X);
	DDX_Text(pDX, IDC_EDIT2Y, m_P2Y);
	DDX_Text(pDX, IDC_EDIT2Z, m_P2Z);
	DDX_Text(pDX, IDC_EDIT3X, m_P3X);
	DDX_Text(pDX, IDC_EDIT3Y, m_P3Y);
	DDX_Text(pDX, IDC_EDIT3Z, m_P3Z);
	DDX_Text(pDX, IDC_EDIT4x, m_P4X);
	DDX_Text(pDX, IDC_EDIT4y, m_P4Y);
	DDX_Text(pDX, IDC_EDIT4z, m_P4Z);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// DLG_CUR_VALUE message handlers

⌨️ 快捷键说明

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