资源简介
计算机图形学,MFC,Bresenham画线,DDA画线,中点画线,画点,画圆。验证成功
代码片段和文件信息
// InputDlg1.cpp : implementation file
//
#include “stdafx.h“
#include “test.h“
#include “InputDlg1.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// InputDlg1 dialog
InputDlg1::InputDlg1(CWnd* pParent /*=NULL*/)
: CDialog(InputDlg1::IDD pParent)
{
//{{AFX_DATA_INIT(InputDlg1)
m_x0 = 0.0;
m_x1 = 0.0;
m_y0 = 0.0;
m_y1 = 0.0;
//}}AFX_DATA_INIT
}
void InputDlg1::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(InputDlg1)
DDX_Text(pDX IDC_EDIT1 m_x0);
DDX_Text(pDX IDC_EDIT2 m_x1);
DDX_Text(pDX IDC_EDIT3 m_y0);
DDX_Text(pDX IDC_EDIT4 m_y1);
//}}AFX_DATA_MAP
}
B
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 19859 2011-05-30 15:03 test\Debug\InputDlg1.obj
文件 19859 2011-05-30 15:17 test\Debug\InputDlg2.obj
文件 19859 2011-05-30 15:23 test\Debug\InputDlg3.obj
文件 19679 2011-05-30 15:33 test\Debug\InputDlg4.obj
文件 19697 2011-05-30 20:12 test\Debug\InputDlg5.obj
文件 29348 2011-05-30 15:03 test\Debug\MainFrm.obj
文件 105353 2011-05-30 15:03 test\Debug\StdAfx.obj
文件 131111 2011-05-30 20:13 test\Debug\test.exe
文件 358028 2011-05-30 20:13 test\Debug\test.ilk
文件 32218 2011-05-30 20:12 test\Debug\test.obj
文件 5561076 2011-05-30 15:03 test\Debug\test.pch
文件 533504 2011-05-30 20:13 test\Debug\test.pdb
文件 8844 2011-05-30 15:57 test\Debug\test.res
文件 24034 2011-05-30 15:03 test\Debug\testDoc.obj
文件 55475 2011-05-30 20:12 test\Debug\testView.obj
文件 230400 2011-05-30 20:13 test\Debug\vc60.idb
文件 372736 2011-05-30 20:12 test\Debug\vc60.pdb
文件 1077 2011-05-30 14:57 test\InputDlg1.cpp
文件 1248 2011-05-30 14:57 test\InputDlg1.h
文件 1077 2011-05-30 15:17 test\InputDlg2.cpp
文件 1248 2011-05-30 15:17 test\InputDlg2.h
文件 1077 2011-05-30 15:23 test\InputDlg3.cpp
文件 1248 2011-05-30 15:23 test\InputDlg3.h
文件 931 2011-05-30 15:32 test\InputDlg4.cpp
文件 1202 2011-05-30 15:32 test\InputDlg4.h
文件 973 2011-05-30 20:10 test\InputDlg5.cpp
文件 1212 2011-05-30 20:10 test\InputDlg5.h
文件 2505 2011-05-30 14:52 test\MainFrm.cpp
文件 1581 2011-05-30 14:52 test\MainFrm.h
文件 4263 2011-05-30 14:52 test\ReadMe.txt
............此处省略27个文件信息
- 上一篇:MFC 记事本
- 下一篇:毕业设计管理系统 源代码C++
评论
共有 条评论