资源简介
在MFC平台上上利用OPENGL实现三维立体图形的绘制,进行了光照和材料等的渲染,并且利用键盘控制物体的旋转、移动、缩放!程序已经过调试,可直接使用!
代码片段和文件信息
// MainFrm.cpp : CMainframe 类的实现
//
#include “stdafx.h“
#include “mfc_cylinder.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
ON_WM_CREATE()
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // 状态行指示器
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
// CMainframe 构造/析构
CMainframe::CMainframe()
{
// TODO: 在此添加成员初始化代码
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“未能创建工具栏\n“);
return -1; // 未能创建
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“未能创建状态栏\n“);
return -1; // 未能创建
}
// TODO: 如果不需要可停靠工具栏,则删除这三行
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: 在此处通过修改
// CREATESTRUCT cs 来修改窗口类或样式
return TRUE;
}
// CMainframe 诊断
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
// CMainframe 消息处理程序
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 144896 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\Debug\mfc_cylinder.exe
文件 2248808 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\Debug\mfc_cylinder.ilk
文件 3755008 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\Debug\mfc_cylinder.pdb
文件 7362 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\BuildLog.htm
文件 34575 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\MainFrm.obj
文件 920 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.exe.em
文件 984 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.exe.em
文件 861 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.exe.intermediate.manifest
文件 37262 2011-10-17 16:28 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.obj
文件 25296896 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.pch
文件 28300 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinder.res
文件 21934 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinderDoc.obj
文件 61215 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mfc_cylinderView.obj
文件 67 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\mt.dep
文件 465891 2011-10-17 11:10 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\stdafx.obj
文件 928768 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\vc90.idb
文件 2011136 2011-10-17 19:03 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\Debug\vc90.pdb
文件 1802 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\MainFrm.cpp
文件 655 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\MainFrm.h
文件 51408 2011-10-17 10:14 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.aps
文件 3353 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.cpp
文件 508 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.h
文件 10360 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.rc
文件 5911 2011-10-17 09:31 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.vcproj
文件 1427 2011-10-17 19:13 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinder.vcproj.PC-201108260937.吴梅君.user
文件 1128 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinderDoc.cpp
文件 582 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinderDoc.h
文件 9316 2011-10-17 19:13 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinderView.cpp
文件 1815 2011-10-17 16:28 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\mfc_cylinderView.h
文件 3550 2011-10-17 08:49 MFC下的可动光照圆柱\mfc_cylinder\mfc_cylinder\ReadMe.txt
............此处省略20个文件信息
相关资源
- 鸡啄米VS2010-MFC编程入门教程
- 对话框opengl简单程序
- VC6.0+MFC类库参考手册中文完整版
- 数据库大作业,MFC 商品管理系统
- MFCVC++读写DXF文件
- MFC Windows程序设计(第五版)中文版
- VISUAL C++MFC编程85个PDF电子书
- 深入浅出MFC简体中文版.rar pdf清晰版
- VC6.0+ACCESS图书管理系统源代码
- 学生成绩管理系统VC6.0_MFC实现
- MFC下利用OPENCV添加显示图片
- 基于mfc中opengl鼠标控制视图旋转缩放
- VS2010 MFC 个人信息管理系统
- C++_MFC的CButtonST含使用说明书及多个
- MFC实现正弦信号发生
- MFC对话框中定义光标的热区
- C++大作业 MFC实现个人通讯录
- 北邮程序实践--基于VS2010MFC的简单聊天
- OpenGL从高度图创建三维地形三维漫游
- 2013VS MFC 闹钟小程序
- 基于MFC点对点聊天程序
- VS2010基于对话框的MFC串口通信简明例
- MFC调用QT页面
- 基于OpenCV和MFC实现布匹瑕疵检测.rar
- 兄弟fax2820mfc7220维修手册
- 车道线检测MFC程序
- 仿QQ聊天系统
- VS2010 MFC读写文件
- MFC-High_Speed Charting绘制动态曲线
- OpenGL编程,画一个球体
评论
共有 条评论