资源简介
图形学圆弧算法MFC:利用圆弧的参数方程,采用离散化方法生成圆弧的思想。即将圆弧离散折线集,通过反复调用直线段的生成算法绘制。
代码片段和文件信息
// Arc_1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Arc_1.h“
#include “MainFrm.h“
#include “Arc_1Doc.h“
#include “Arc_1View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CArc_1App
BEGIN_MESSAGE_MAP(CArc_1App CWinApp)
//{{AFX_MSG_MAP(CArc_1App)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CArc_1App construction
CArc_1App::CArc_1App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CArc_1App object
CArc_1App theApp;
/////////////////////////////////////////////////////////////////////////////
// CArc_1App initialization
BOOL CArc_1App::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CArc_1Doc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CArc_1View));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-10 22:41 Arc_1\
文件 45400 2018-11-10 22:32 Arc_1\Arc_1.aps
文件 3047 2018-11-10 22:35 Arc_1\Arc_1.clw
文件 4191 2018-11-10 22:22 Arc_1\Arc_1.cpp
文件 4660 2018-11-10 22:41 Arc_1\Arc_1.dsp
文件 518 2018-11-10 22:22 Arc_1\Arc_1.dsw
文件 1345 2018-11-10 22:22 Arc_1\Arc_1.h
文件 50176 2018-11-10 22:41 Arc_1\Arc_1.ncb
文件 49664 2018-11-10 22:41 Arc_1\Arc_1.opt
文件 1774 2018-11-10 22:32 Arc_1\Arc_1.plg
文件 12711 2018-11-10 22:32 Arc_1\Arc_1.rc
文件 1722 2018-11-10 22:22 Arc_1\Arc_1Doc.cpp
文件 1464 2018-11-10 22:22 Arc_1\Arc_1Doc.h
文件 3400 2018-11-10 22:32 Arc_1\Arc_1View.cpp
文件 1837 2018-11-10 22:31 Arc_1\Arc_1View.h
目录 0 2018-11-10 22:32 Arc_1\Debug\
文件 118900 2018-11-10 22:32 Arc_1\Debug\Arc_1.exe
文件 314616 2018-11-10 22:32 Arc_1\Debug\Arc_1.ilk
文件 23444 2018-11-10 22:32 Arc_1\Debug\Arc_1.obj
文件 5495576 2018-11-10 22:32 Arc_1\Debug\Arc_1.pch
文件 336896 2018-11-10 22:32 Arc_1\Debug\Arc_1.pdb
文件 7848 2018-11-10 22:32 Arc_1\Debug\Arc_1.res
文件 15220 2018-11-10 22:32 Arc_1\Debug\Arc_1Doc.obj
文件 25741 2018-11-10 22:32 Arc_1\Debug\Arc_1View.obj
文件 20467 2018-11-10 22:32 Arc_1\Debug\MainFrm.obj
文件 106134 2018-11-10 22:32 Arc_1\Debug\StdAfx.obj
文件 11028 2018-11-10 22:32 Arc_1\Debug\dialog1.obj
文件 214016 2018-11-10 22:40 Arc_1\Debug\vc60.idb
文件 364544 2018-11-10 22:32 Arc_1\Debug\vc60.pdb
文件 2506 2018-11-10 22:22 Arc_1\MainFrm.cpp
文件 1581 2018-11-10 22:22 Arc_1\MainFrm.h
............此处省略11个文件信息
相关资源
- c++QT5新版画任意阶贝塞尔曲线完整工
- 孔令德 计算机图形学
- MFC计算机图形学-三维图形几何变换斜
- 计算机图形学opengl作业
- 光线跟踪 入门级 项目代码
- 计算机图形学实践教程随书源代码
- 计算机图形学实践教程 vc++ 案例 源码
- 孔令德 计算机图形学基础教程visual
- 计算机图形学实践教程第2版源程序
- MFC实现Koch曲线的绘制
- 计算机图形学(MFC)-直线段裁剪
- 计算机图形学MFC-双缓冲二维图形几何
- 计算机图形学 猫变虎作业
- 计算机图形学作业
- Computer Graphics Programming in OpenGL with C
- 计算机图形学基础教程Visual C++版 孔令
- C++ 孔令德计算机图形学习题答案源代
- 计算机图形学+配书源代码
- 计算机图形学原理及算法教程(Visu
- OpenGL计算机图形学2D太阳系模型
- c++ 直线裁剪、画矩形等(graphics)
- 圆环纹理映射(c++项目)
- 计算机图形学图形剪裁与变换算法的
- 计算机图形学简单图像设计c++
- 吉林大学软件工程图形学上机实验代
- 图形学课程作业-mfc.zip
- 计算机图形学原理及实践——C语言描
- 交互式绘制多边形
- 计算机图形学基础教程 VisualC++版 习
- 计算机图形学(MFC)-多边形平滑填充
评论
共有 条评论