资源简介
计算机图形学基于VC++开发的实现多边形扫描转换的程序,可以实现多边形区域填充
代码片段和文件信息
// Graph.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Graph.h“
#include “MainFrm.h“
#include “GraphDoc.h“
#include “GraphView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGraphApp
BEGIN_MESSAGE_MAP(CGraphApp CWinApp)
//{{AFX_MSG_MAP(CGraphApp)
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_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGraphApp construction
CGraphApp::CGraphApp()
{
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CGraphApp object
CGraphApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CGraphApp initialization
BOOL CGraphApp::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(CGraphDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CGraphView));
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;
}
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-10-04 20:41 多边形扫描转换\
目录 0 2011-10-04 21:17 多边形扫描转换\Graph\
目录 0 2011-10-04 21:15 多边形扫描转换\Graph\Debug\
文件 118867 2011-10-04 21:15 多边形扫描转换\Graph\Debug\Graph.exe
文件 315764 2011-10-04 21:15 多边形扫描转换\Graph\Debug\Graph.ilk
文件 23150 2011-10-04 21:08 多边形扫描转换\Graph\Debug\Graph.obj
文件 5728324 2011-08-31 15:25 多边形扫描转换\Graph\Debug\Graph.pch
文件 484352 2011-10-04 21:15 多边形扫描转换\Graph\Debug\Graph.pdb
文件 6240 2011-10-04 21:15 多边形扫描转换\Graph\Debug\Graph.res
文件 15005 2011-10-04 20:58 多边形扫描转换\Graph\Debug\GraphDoc.obj
文件 24668 2011-10-04 21:12 多边形扫描转换\Graph\Debug\GraphView.obj
文件 19698 2011-08-31 15:25 多边形扫描转换\Graph\Debug\MainFrm.obj
文件 105429 2011-08-31 15:25 多边形扫描转换\Graph\Debug\StdAfx.obj
文件 222208 2011-10-04 21:17 多边形扫描转换\Graph\Debug\vc60.idb
文件 372736 2011-10-04 21:12 多边形扫描转换\Graph\Debug\vc60.pdb
文件 43356 2011-10-04 21:15 多边形扫描转换\Graph\Graph.aps
文件 1853 2011-10-04 21:17 多边形扫描转换\Graph\Graph.clw
文件 4048 2011-10-04 20:58 多边形扫描转换\Graph\Graph.cpp
文件 4534 2011-08-31 15:25 多边形扫描转换\Graph\Graph.dsp
文件 533 2011-08-31 15:25 多边形扫描转换\Graph\Graph.dsw
文件 1158 2011-10-04 20:49 多边形扫描转换\Graph\Graph.h
文件 91136 2011-10-04 21:17 多边形扫描转换\Graph\Graph.ncb
文件 72704 2011-10-04 21:17 多边形扫描转换\Graph\Graph.opt
文件 244 2011-10-04 21:17 多边形扫描转换\Graph\Graph.plg
文件 10280 2011-10-04 21:15 多边形扫描转换\Graph\Graph.rc
文件 1517 2011-10-04 20:58 多边形扫描转换\Graph\GraphDoc.cpp
文件 1464 2011-08-31 15:25 多边形扫描转换\Graph\GraphDoc.h
文件 5115 2011-10-04 21:12 多边形扫描转换\Graph\GraphView.cpp
文件 1842 2011-10-04 21:08 多边形扫描转换\Graph\GraphView.h
文件 2506 2011-08-31 15:25 多边形扫描转换\Graph\MainFrm.cpp
文件 1581 2011-08-31 15:25 多边形扫描转换\Graph\MainFrm.h
............此处省略9个文件信息
- 上一篇:C++上机考试系统包括100道题
- 下一篇:基于循环双向链表的大整数计算器c++实现
相关资源
- 计算机图形学多边形种子填充算法
- C++实现多语言程序Demo
- MFC多线程编程三个
- C++解多元一次方程组的代码
- C++ 图形界面 实现文本编辑框输入同步
- C++ 橡皮筋技术画矩形
- 经典的分形入门程序-Koch曲线的递归算
- 计算机图形学 消隐
- 用MFC 设计绘制各种数学图形程序 如
- opengl实现漫游
- VC6.0 socket编程,多客户端,单服务器
- 计算机图形学作业,中点算法画椭圆
- 基于icmp协议的主机存活性探测+图形化
- mfc树形控件201037
- MFC_波形显示器
- MFC中点圆的生成算法
- 改进的有效边表算法--计算机图形学
- 最好的CS游戏opengl、C++实现
- C++继承、派生 代码
- 纯mfc绘图制做三维仿真图形魔方
- C++课后小练习(类、继承、多态等有
- MFC 实现画线 画图形 移动删除图形
- C++ Socket 多线程多机聊天
- 画图软件(直线、矩形、椭圆、三角
- c语言小游戏 雷霆战机ege图形库实现版
- 梁友栋-直线裁剪算法图形学mfc
- 对声卡音频数据采集,实时显示波形
- c++实现socket:一个服务器对应多个客
- VC++定义一只红色画笔,绘制一个等边
- C++实现图像边缘检测
评论
共有 条评论