-
大小: 32KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-06-15
- 语言: C/C++
- 标签: Cohen Sutherland
资源简介
本文通过一个完整的实例演示Cohen-Sutherland直线段裁剪算法。
参考文献:计算机图形学基础教程(Visual C++版)(第2版) 孔令德 编著
代码片段和文件信息
// Cohen_Sutherland.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Cohen_Sutherland.h“
#include “MainFrm.h“
#include “Cohen_SutherlandDoc.h“
#include “Cohen_SutherlandView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCohen_SutherlandApp
BEGIN_MESSAGE_MAP(CCohen_SutherlandApp CWinApp)
//{{AFX_MSG_MAP(CCohen_SutherlandApp)
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)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCohen_SutherlandApp construction
CCohen_SutherlandApp::CCohen_SutherlandApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCohen_SutherlandApp object
CCohen_SutherlandApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCohen_SutherlandApp initialization
BOOL CCohen_SutherlandApp::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(CCohen_SutherlandDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CCohen_SutherlandView));
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->Show
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 26400 2014-11-05 11:21 Cohen_Sutherland\Cohen_Sutherland.aps
文件 1966 2014-11-05 14:51 Cohen_Sutherland\Cohen_Sutherland.clw
文件 4294 2014-11-05 11:18 Cohen_Sutherland\Cohen_Sutherland.cpp
文件 4813 2014-11-05 15:00 Cohen_Sutherland\Cohen_Sutherland.dsp
文件 538 2014-11-05 11:18 Cohen_Sutherland\Cohen_Sutherland.dsw
文件 1466 2014-11-05 11:18 Cohen_Sutherland\Cohen_Sutherland.h
文件 50176 2014-11-05 15:00 Cohen_Sutherland\Cohen_Sutherland.ncb
文件 48640 2014-11-05 15:00 Cohen_Sutherland\Cohen_Sutherland.opt
文件 1252 2014-11-05 14:51 Cohen_Sutherland\Cohen_Sutherland.plg
文件 9149 2014-11-05 11:18 Cohen_Sutherland\Cohen_Sutherland.rc
文件 1942 2014-11-05 11:18 Cohen_Sutherland\Cohen_SutherlandDoc.cpp
文件 1585 2014-11-05 11:18 Cohen_Sutherland\Cohen_SutherlandDoc.h
文件 4507 2014-11-05 14:50 Cohen_Sutherland\Cohen_SutherlandView.cpp
文件 2034 2014-11-05 14:45 Cohen_Sutherland\Cohen_SutherlandView.h
文件 1507 2014-11-05 11:18 Cohen_Sutherland\MainFrm.cpp
文件 1421 2014-11-05 11:18 Cohen_Sutherland\MainFrm.h
文件 539 2014-11-05 11:41 Cohen_Sutherland\P2.cpp
文件 497 2014-11-05 11:41 Cohen_Sutherland\P2.h
文件 4226 2014-11-05 11:18 Cohen_Sutherland\ReadMe.txt
文件 1078 2014-11-05 11:18 Cohen_Sutherland\res\Cohen_Sutherland.ico
文件 408 2014-11-05 11:18 Cohen_Sutherland\res\Cohen_Sutherland.rc2
文件 1078 2014-11-05 11:18 Cohen_Sutherland\res\Cohen_SutherlandDoc.ico
文件 504 2014-11-05 11:18 Cohen_Sutherland\Resource.h
文件 218 2014-11-05 11:18 Cohen_Sutherland\StdAfx.cpp
文件 1054 2014-11-05 11:18 Cohen_Sutherland\StdAfx.h
目录 0 2014-11-05 11:18 Cohen_Sutherland\res
目录 0 2014-11-05 15:00 Cohen_Sutherland
----------- --------- ---------- ----- ----
171292 27
............此处省略0个文件信息
- 上一篇:MFC操作sqlite3需要的库文件
- 下一篇:高斯消去法C++代码
相关资源
- 计算机图形学大作业C++代码MFC终极版
- c语言编程中点画线法
- 计算机图形学实验二 opengl
- 计算机图形学 中点画椭圆法 Bresenha
- 计算机图形学 直线裁剪算法
- 计算机图形学实验 图形函数库
- 计算机图形学OpenGL画机器人
- 计算机图形学 多边形裁剪程序
- 计算机图形学 帧动画
- 计算机图形学——球的光照模型算法
- 北邮计算机图形学作业一
- 抛物样条曲线 鼠标操作
- 正轴测投影+旋转
- 西南交通大学计算机图形学实验三,
- 计算机图形学画月亮C语言
- Cohen-Sutherland算法实现
- 计算机图形学 透视图算法
- Bezier曲线算法
- 计算机图形学VSC++生成时钟报告含代码
- 计算机图形学直线段的扫描转换C++实
- 开放源码的计算机图形学几何算法包
- 计算机图形学课程设计皮球运动动画
- 计算机图形学考试内容-Opengl-会移动的
- 计算机图形学 课程设计 作业
- 双三次B样条曲面算法 计算机图形学
- 三次B样条曲线算法 计算机图形学 案
- Bezier曲线MFC实现源代码
- 计算机图形学实验之消隐处理
- 计算机图形学——立方体旋转 VC MFC
- 计算机图形学大作业 二维图形变换
评论
共有 条评论