资源简介
计算机图形学大作业,是我用MFC做的,因为是用MFC做的,所以画图部分比较慢,特别是种子填充,所以图形变换和多边形裁剪是另外两个单独的小程序。全部的功能有画DDA直线,中心画圆,椭圆,矩形,多边形,反走样直线,种子填充,扫描线填充,多边形裁剪和图形变换。
代码片段和文件信息
// jhs.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “jhs.h“
#include “MainFrm.h“
#include “jhsDoc.h“
#include “jhsView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CJhsApp
BEGIN_MESSAGE_MAP(CJhsApp CWinApp)
//{{AFX_MSG_MAP(CJhsApp)
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()
/////////////////////////////////////////////////////////////////////////////
// CJhsApp construction
CJhsApp::CJhsApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CJhsApp object
CJhsApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CJhsApp initialization
BOOL CJhsApp::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(CJhsDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CJhsView));
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 2013-01-13 17:57 绘图板\
目录 0 2013-01-13 17:57 绘图板\jhs\
目录 0 2013-01-13 17:57 绘图板\jhs\Debug\
文件 5440512 2012-12-24 00:29 绘图板\jhs\Debug\jhs.bsc
文件 139323 2012-12-24 00:29 绘图板\jhs\Debug\jhs.exe
文件 510200 2012-12-24 00:29 绘图板\jhs\Debug\jhs.ilk
文件 23224 2012-12-23 22:40 绘图板\jhs\Debug\jhs.obj
文件 6944108 2012-12-21 21:02 绘图板\jhs\Debug\jhs.pch
文件 541696 2012-12-24 00:29 绘图板\jhs\Debug\jhs.pdb
文件 7468 2012-12-24 00:28 绘图板\jhs\Debug\jhs.res
文件 0 2012-12-23 22:40 绘图板\jhs\Debug\jhs.sbr
文件 14813 2012-12-21 21:02 绘图板\jhs\Debug\jhsDoc.obj
文件 0 2012-12-21 21:02 绘图板\jhs\Debug\jhsDoc.sbr
文件 94933 2012-12-24 00:29 绘图板\jhs\Debug\jhsView.obj
文件 0 2012-12-24 00:29 绘图板\jhs\Debug\jhsView.sbr
文件 20158 2012-12-21 21:02 绘图板\jhs\Debug\MainFrm.obj
文件 0 2012-12-21 21:02 绘图板\jhs\Debug\MainFrm.sbr
文件 105853 2012-12-21 21:02 绘图板\jhs\Debug\StdAfx.obj
文件 1375037 2012-12-21 21:02 绘图板\jhs\Debug\StdAfx.sbr
文件 222208 2012-12-24 00:30 绘图板\jhs\Debug\vc60.idb
文件 380928 2012-12-24 00:29 绘图板\jhs\Debug\vc60.pdb
文件 44768 2012-12-24 00:25 绘图板\jhs\jhs.aps
文件 2474 2012-12-24 00:22 绘图板\jhs\jhs.clw
文件 4155 2012-12-21 19:48 绘图板\jhs\jhs.cpp
文件 4496 2012-12-21 21:18 绘图板\jhs\jhs.dsp
文件 514 2012-12-21 19:48 绘图板\jhs\jhs.dsw
文件 1323 2012-12-21 19:48 绘图板\jhs\jhs.h
文件 91136 2012-12-24 00:31 绘图板\jhs\jhs.ncb
文件 53760 2012-12-24 00:31 绘图板\jhs\jhs.opt
文件 2328 2012-12-24 00:29 绘图板\jhs\jhs.plg
文件 12354 2012-12-24 00:25 绘图板\jhs\jhs.rc
............此处省略113个文件信息
相关资源
- 基于C++/Access的宿舍管理系统
- 代码mfcc的pro
- 给力仿真电梯MFC源码含报告
- 基于SIFT多幅图像拼接系统 毕设源码
- 计算机图形学OPENGL 动画代码
- MFC ADO方法链接SQlServer数据库vc6实现
- VS2003 MFC串口源码,通过修改可以变成
- MFC邮件收发完整
- MFC+Access图书馆管理系统
- 基于MFC和mysql的学生管理系统
- VS2010之MFC入门到精通教程——带图片
- mfc界面及示波器程序源码
- C++ MFC 学生信息管理系统+文档报
- Opencv+MFC框架图像处理
- 基于MFC的考试管理系统
- 用MFC实现折线图,柱形图,饼图
- MFC+winpcap写的抓包程序
- Ogre嵌入MFC的
- MFC英文帮助文档
- MFC打印图片文字
- 树形控件显示通讯录
- 地图着色(MFC)
- 动物识别系统MFC)
- C++ 基于 MFC 和 mysql 的学生管理系统
- mfc+ sql2000 实现运动会成绩管理系统
- Socket网络编程控制台+MFC TCP
- MFC串口接收数据坐标曲线实时显示
- MFC帮助文档
- VS2010 MFC VC++ 学习教程资料 1-55
- MFC 门卫管理系统
评论
共有 条评论