资源简介

图形学简单绘图系统

资源截图

代码片段和文件信息

// Bezier1.cpp : implementation file
//

#include “stdafx.h“
#include “DrawSystem.h“
#include “Bezier1.h“

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

/////////////////////////////////////////////////////////////////////////////
// Bezier1 dialog


Bezier1::Bezier1(CWnd* pParent /*=NULL*/)
: CDialog(Bezier1::IDD pParent)
{
//{{AFX_DATA_INIT(Bezier1)
m_x0 = 0;
m_x1 = 0;
m_y0 = 0;
m_y1 = 0;
//}}AFX_DATA_INIT
}


void Bezier1::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Bezier1)
DDX_Text(pDX IDC_x0 m_x0);
DDX_Text(pDX IDC_x1 m_x1);
DDX_Text(pDX IDC_y0 m_y0);
DDX_Text(pDX IDC_y1 m_y1);
//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// Bezier1 message handlers

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-12-25 19:33  20.201807070911.岳夏雨\
     文件        1039  2020-12-12 23:07  20.201807070911.岳夏雨\Bezier1.cpp
     文件        1220  2020-12-12 23:07  20.201807070911.岳夏雨\Bezier1.h
     文件        1125  2020-12-12 23:19  20.201807070911.岳夏雨\Bezier2.cpp
     文件        1246  2020-12-12 23:19  20.201807070911.岳夏雨\Bezier2.h
     文件        1211  2020-12-12 23:34  20.201807070911.岳夏雨\Bezier3.cpp
     文件        1272  2020-12-12 23:34  20.201807070911.岳夏雨\Bezier3.h
     目录           0  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\
     文件       10205  2020-12-12 23:12  20.201807070911.岳夏雨\Debug\Bezier1.obj
     文件       10311  2020-12-12 23:23  20.201807070911.岳夏雨\Debug\Bezier2.obj
     文件       10417  2020-12-12 23:38  20.201807070911.岳夏雨\Debug\Bezier3.obj
     文件      168024  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\DrawSystem.exe
     文件      397616  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\DrawSystem.ilk
     文件       23024  2020-12-15 19:43  20.201807070911.岳夏雨\Debug\DrawSystem.obj
     文件     5495520  2020-12-11 22:19  20.201807070911.岳夏雨\Debug\DrawSystem.pch
     文件      590848  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\DrawSystem.pdb
     文件       10540  2020-12-13 16:26  20.201807070911.岳夏雨\Debug\DrawSystem.res
     文件       14780  2020-12-11 22:19  20.201807070911.岳夏雨\Debug\DrawSystemDoc.obj
     文件      148903  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\DrawSystemView.obj
     文件       10417  2020-12-13 01:16  20.201807070911.岳夏雨\Debug\Hermite.obj
     文件       12758  2020-12-13 16:20  20.201807070911.岳夏雨\Debug\Line.obj
     文件       19782  2020-12-11 22:19  20.201807070911.岳夏雨\Debug\MainFrm.obj
     文件      105505  2020-12-11 22:19  20.201807070911.岳夏雨\Debug\StdAfx.obj
     文件      238592  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\vc60.idb
     文件      430080  2020-12-25 19:33  20.201807070911.岳夏雨\Debug\vc60.pdb
     文件       35248  2020-12-17 11:08  20.201807070911.岳夏雨\DrawSystem.aps
     文件        7108  2020-12-25 19:33  20.201807070911.岳夏雨\DrawSystem.clw
     文件        4281  2020-12-11 21:58  20.201807070911.岳夏雨\DrawSystem.cpp
     文件        5260  2020-12-13 01:23  20.201807070911.岳夏雨\DrawSystem.dsp
     文件         528  2020-12-12 00:39  20.201807070911.岳夏雨\DrawSystem.dsw
     文件        1400  2020-12-11 21:58  20.201807070911.岳夏雨\DrawSystem.h
............此处省略25个文件信息

评论

共有 条评论