欢迎来到天天文库
浏览记录
ID:38366064
大小:51.50 KB
页数:3页
时间:2019-06-11
《图形学实验报告裁剪》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、数学与统计学院实验报告(2012–2013学年第二学期)实验课程计算机图形学简明教程实验日期实验项目裁剪项目学时4专业信息与计算科学班级姓名学号实验设备计算机58【评价及意见】实验成绩:教师签名:批改日期:年月日【实验目的和要求】目的:了解OpenGL图形软件包绘制图形的基本过程及其程序框架,会使用相应的语言进行图形裁剪要求:掌握软件的使用方法,绘制基本的图形并进行裁剪【实验内容和结果】//裁剪.cpp:Definestheclassbehaviorsfortheapplication.//#include"stdafx.h"#inclu
2、de"裁剪.h"#include"裁剪Dlg.h"#ifdef_DEBUG#definenewDEBUG_NEW#undefTHIS_FILEstaticcharTHIS_FILE[]=__FILE__;#endif///////////////////////////////////////////////////////////////////////////////CMyAppBEGIN_MESSAGE_MAP(CMyApp,CWinApp)//{{AFX_MSG_MAP(CMyApp)//NOTE-theClassWizardwi
3、lladdandremovemappingmacroshere.//DONOTEDITwhatyouseeintheseblocksofgeneratedcode!//}}AFX_MSGON_COMMAND(ID_HELP,CWinApp::OnHelp)END_MESSAGE_MAP()///////////////////////////////////////////////////////////////////////////////CMyAppconstructionCMyApp::CMyApp(){//TODO:addcon
4、structioncodehere,//PlaceallsignificantinitializationinInitInstance}///////////////////////////////////////////////////////////////////////////////TheoneandonlyCMyAppobjectCMyApptheApp;///////////////////////////////////////////////////////////////////////////////CMyAppin
5、itializationBOOLCMyApp::InitInstance(){AfxEnableControlContainer();//Standardinitialization//Ifyouarenotusingthesefeaturesandwishtoreducethesize//ofyourfinalexecutable,youshouldremovefromthefollowing//thespecificinitializationroutinesyoudonotneed.#ifdef_AFXDLLEnable3dCont
6、rols();//CallthiswhenusingMFCinasharedDLL#elseEnable3dControlsStatic();//CallthiswhenlinkingtoMFCstatically#endifCMyDlgdlg;m_pMainWnd=&dlg;intnResponse=dlg.DoModal();if(nResponse==IDOK){//TODO:Placecodeheretohandlewhenthedialogis//dismissedwithOK}elseif(nResponse==IDCANCE
7、L){//TODO:Placecodeheretohandlewhenthedialogis//dismissedwithCancel}//Sincethedialoghasbeenclosed,returnFALSEsothatweexitthe//application,ratherthanstarttheapplication'smessagepump.returnFALSE;}
此文档下载收益归作者所有