资源简介
MFC+OPENGL实现3D茶壶的旋转、平移,在运行前先下载需要的GLUT头文件,DLL和Lib文件,把gltu.h放到"VC98/Include/GL"下,把glut.lib和glut32.lib放到"VC9/Lib" 下,glut32.dll和glut.dll放到你创建的应用程序的运行目录下
代码片段和文件信息
// CY457OpenGL.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CY457OpenGL.h“
#include “MainFrm.h“
#include “CY457OpenGLDoc.h“
#include “CY457OpenGLView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCY457OpenGLApp
BEGIN_MESSAGE_MAP(CCY457OpenGLApp CWinApp)
//{{AFX_MSG_MAP(CCY457OpenGLApp)
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()
/////////////////////////////////////////////////////////////////////////////
// CCY457OpenGLApp construction
CCY457OpenGLApp::CCY457OpenGLApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCY457OpenGLApp object
CCY457OpenGLApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCY457OpenGLApp initialization
BOOL CCY457OpenGLApp::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(CCY457OpenGLDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CCY457OpenGLView));
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;
}
////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 44044 2010-04-08 10:36 CY457OpenGL\CY457OpenGL.aps
文件 2329 2010-04-08 21:56 CY457OpenGL\CY457OpenGL.clw
文件 4204 2008-11-05 09:42 CY457OpenGL\CY457OpenGL.cpp
文件 4706 2008-11-05 10:56 CY457OpenGL\CY457OpenGL.dsp
文件 547 2008-11-05 09:42 CY457OpenGL\CY457OpenGL.dsw
文件 1411 2008-11-05 09:42 CY457OpenGL\CY457OpenGL.h
文件 66560 2010-04-08 21:56 CY457OpenGL\CY457OpenGL.ncb
文件 49664 2010-04-08 21:56 CY457OpenGL\CY457OpenGL.opt
文件 811 2010-04-08 15:37 CY457OpenGL\CY457OpenGL.plg
文件 11119 2010-04-08 10:36 CY457OpenGL\CY457OpenGL.rc
文件 1842 2008-11-05 09:42 CY457OpenGL\CY457OpenGLDoc.cpp
文件 1530 2008-11-05 09:42 CY457OpenGL\CY457OpenGLDoc.h
文件 9746 2010-04-08 15:37 CY457OpenGL\CY457OpenGLView.cpp
文件 2726 2010-04-08 12:04 CY457OpenGL\CY457OpenGLView.h
文件 169984 1998-08-18 16:25 CY457OpenGL\glut.dll
文件 169984 1998-08-18 16:25 CY457OpenGL\glut32.dll
文件 2660 2010-04-08 10:33 CY457OpenGL\MainFrm.cpp
文件 1514 2010-04-08 10:33 CY457OpenGL\MainFrm.h
文件 4431 2008-11-05 09:42 CY457OpenGL\ReadMe.txt
文件 1078 2008-11-05 09:42 CY457OpenGL\res\CY457OpenGL.ico
文件 403 2008-11-05 09:42 CY457OpenGL\res\CY457OpenGL.rc2
文件 1078 2008-11-05 09:42 CY457OpenGL\res\CY457OpenGLDoc.ico
文件 1078 2008-11-05 09:42 CY457OpenGL\res\Toolbar.bmp
文件 645 2010-04-08 10:36 CY457OpenGL\resource.h
文件 213 2008-11-05 09:42 CY457OpenGL\StdAfx.cpp
文件 1158 2008-11-05 09:46 CY457OpenGL\StdAfx.h
目录 0 2010-04-08 15:38 CY457OpenGL\Debug
目录 0 2008-11-05 09:42 CY457OpenGL\res
目录 0 2010-04-08 21:56 CY457OpenGL
----------- --------- ---------- ----- ----
............此处省略2个文件信息
- 上一篇:八数码C语言实现包含实验报告
- 下一篇:隐含马尔科夫链的C语言实现
相关资源
- MFC万年历制作
- MFC 鼠标实时画线
- MFC动态绘制曲线图-HightSpeedChart实现
- MFC下好用的高速绘图控件-(Hight-Spe
- MFC 窗口缩放
- CBarchart 控件做的柱形图 MFC编程
- MFCN42D.DLL
- C++MFC画圆源代码
- 采用MFC编写的文件加密解密程序
- MFC通过文件类型名获取文件图标列表
- MFC用户界面线程的创建
- MFC 界面换肤资源
- VC+MFC网络聊天工具详细设计.doc
- 蚂蚁算法MFC实现执行文件
- 基于MFC的图书管理系统.7z
- 基于MFC的图像处理
- 图片浏览器实现和图像编辑器实现源
- opengl实现对地球纹理贴图
- mfc的ftp客户端源码
- MFC 打开文件夹
- MFC成绩管理系统.rar
- zw_基于Ribbon界面的图书管理系统—w
- MFC有界面RSA加密解密算法实现
- vc MFC获得uuid或GUID
- BLH与XYZ的转换
- 计算机网络实验——链路状态路
- 猎豹网校MFC视频教程全套地址
- 串口调试助手源代码(MFC+SComm)
- mfc110.dll
- mfc42.dll
评论
共有 条评论