資源簡介
設計和實現一個圖形函數庫,具有繪制直線段、任意圓弧、橢圓弧、多邊形區域的陰影填充和顏色填充等功能; 并利用該庫生成一個二維圖形場景,其中包含編寫者的名字。注:僅調用畫點函數 Windows API: setpixel(hdc,x,y,color)
開發環境:VIsual C++。壓縮包中包含所有代碼和實驗報告

代碼片段和文件信息
//?Circle.cpp?:?implementation?file
//
#include?“stdafx.h“
#include?“Graph.h“
#include?“Circle.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CCircle?dialog
CCircle::CCircle(CWnd*?pParent?/*=NULL*/)
:?CDialog(CCircle::IDD?pParent)
{
//{{AFX_DATA_INIT(CCircle)
Radius=0;
//SetDlgItemText(IDC_RADIUSNULL);
//?NOTE:?the?ClassWizard?will?add?member?initialization?here
//}}AFX_DATA_INIT
}
void?CCircle::DoDataExchange(CDataExchange*?pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCircle)
DDX_Text(pDX?IDC_RADIUS?Radius);
//?NOTE:?the?ClassWizard?will?add?DDX?and?DDV?calls?here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CCircle?CDialog)
//{{AFX_MSG_MAP(CCircle)
//?NOTE:?the?ClassWizard?will?add?message?map?macros?here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
//?CCircle?message?handlers
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????.CA....????119189??2019-04-03?10:40??計算機圖形學實驗報告.docx
????.CA....??????1070??2019-03-27?12:48??Graph\Circle.cpp
????.CA....??????1234??2019-03-27?00:48??Graph\Circle.h
????.CA....??????9932??2019-03-27?12:48??Graph\Debug\Circle.obj
????.CA....?????10010??2019-03-27?11:56??Graph\Debug\Ellipse.obj
????.CA....????147502??2019-04-03?00:11??Graph\Debug\Graph.exe
????.CA....???1058960??2019-04-03?00:11??Graph\Debug\Graph.ilk
????.CA....?????22693??2019-04-03?00:11??Graph\Debug\Graph.obj
????.CA....???5507044??2019-03-27?00:45??Graph\Debug\Graph.pch
????.CA....????541696??2019-04-03?00:11??Graph\Debug\Graph.pdb
????.CA....??????8492??2019-04-02?18:51??Graph\Debug\Graph.res
????.CA....?????14424??2019-03-27?00:45??Graph\Debug\GraphDoc.obj
????.CA....?????75440??2019-04-03?00:11??Graph\Debug\GraphView.obj
????.CA....?????19673??2019-03-27?00:45??Graph\Debug\MainFrm.obj
????.CA....?????10110??2019-03-29?22:02??Graph\Debug\Polygonarea.obj
????.CA....?????10113??2019-03-29?22:00??Graph\Debug\Shadowline.obj
????.CA....????105408??2019-03-27?00:45??Graph\Debug\StdAfx.obj
????.CA....????271360??2019-04-03?00:11??Graph\Debug\vc60.idb
????.CA....????479232??2019-04-03?00:11??Graph\Debug\vc60.pdb
????.CA....??????1086??2019-03-27?11:56??Graph\Ellipse.cpp
????.CA....??????1258??2019-03-27?11:23??Graph\Ellipse.h
????.CA....?????45964??2019-04-02?18:51??Graph\Graph.aps
????.CA....??????4237??2019-04-03?00:12??Graph\Graph.clw
????.CA....??????4191??2019-03-27?00:36??Graph\Graph.cpp
????.CA....??????5050??2019-03-27?14:38??Graph\Graph.dsp
????.CA....???????516??2019-03-27?00:36??Graph\Graph.dsw
????.CA....??????1345??2019-03-27?00:36??Graph\Graph.h
????.CA....?????91136??2019-04-03?00:12??Graph\Graph.ncb
????.CA....?????51712??2019-04-03?00:12??Graph\Graph.opt
????.CA....??????1290??2019-04-03?00:11??Graph\Graph.plg
............此處省略25個文件信息
評論
共有 條評論