资源简介
OpenGL绘制图形及显示,鼠标控制缩放,旋转,移动,用VisualStudio2012成功编译运行
代码片段和文件信息
// 3DShow_XJHu1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “afxwinappex.h“
#include “afxdialogex.h“
#include “3DShow_XJHu1.h“
#include “MainFrm.h“
#include “3DShow_XJHu1Doc.h“
#include “3DShow_XJHu1View.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMy3DShow_XJHu1App
BEGIN_MESSAGE_MAP(CMy3DShow_XJHu1App CWinApp)
ON_COMMAND(ID_APP_ABOUT &CMy3DShow_XJHu1App::OnAppAbout)
// 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()
// CMy3DShow_XJHu1App construction
CMy3DShow_XJHu1App::CMy3DShow_XJHu1App()
{
// support Restart Manager
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
// If the application is built using Common Language Runtime support (/clr):
// 1) This additional setting is needed for Restart Manager support to work properly.
// 2) In your project you must add a reference to System.Windows.Forms in order to build.
System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif
// TODO: replace application ID string below with unique ID string; recommended
// format for string is CompanyName.ProductName.SubProduct.VersionInformation
SetAppID(_T(“3DShow_XJHu1.AppID.NoVersion“));
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
// The one and only CMy3DShow_XJHu1App object
CMy3DShow_XJHu1App theApp;
// CMy3DShow_XJHu1App initialization
BOOL CMy3DShow_XJHu1App::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles. Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
// Initialize OLE libraries
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
EnableTaskbarInteraction(FALSE);
// AfxInitRichEdit2() is required to use RichEdit control
// AfxInitRichEdit2();
// 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
// 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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 105936 2018-09-13 16:58 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.aps
文件 4973 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.cpp
文件 613 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.h
文件 11733 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.rc
文件 6613 2018-09-17 16:42 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.vcxproj
文件 2709 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1.vcxproj.filters
文件 2922 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1Doc.cpp
文件 980 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1Doc.h
文件 7174 2018-09-14 15:31 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1View.cpp
文件 1891 2018-09-14 14:18 3DShow_XJHu1\3DShow_XJHu1\3DShow_XJHu1View.h
文件 1936 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\MainFrm.cpp
文件 753 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\MainFrm.h
文件 5591 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\ReadMe.txt
文件 67777 2012-10-01 08:45 3DShow_XJHu1\3DShow_XJHu1\res\3DShow_XJHu1.ico
文件 4710 2012-10-01 08:45 3DShow_XJHu1\3DShow_XJHu1\res\3DShow_XJHu1Doc.ico
文件 812 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\res\My3DShow_XJHu1.rc2
文件 1078 2012-10-01 08:45 3DShow_XJHu1\3DShow_XJHu1\res\Toolbar.bmp
文件 512 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\Resource.h
文件 214 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\stdafx.cpp
文件 1753 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\stdafx.h
文件 314 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1\targetver.h
文件 903 2018-09-13 15:54 3DShow_XJHu1\3DShow_XJHu1.sln
目录 0 2018-09-17 16:43 3DShow_XJHu1\3DShow_XJHu1\res
目录 0 2018-09-18 10:19 3DShow_XJHu1\3DShow_XJHu1
目录 0 2018-09-18 10:19 3DShow_XJHu1
----------- --------- ---------- ----- ----
231897 25
相关资源
- 光线跟踪算法源码
- opengl的glut最全包
- glad.h库OpenGL开发用
- OpenGL+IMU显示姿态
- OpenGL编程指南第七版(原书+目录+文本
- glut工具包,解决编译问题: 无法打
- OPENGL视频教程从入门基础到精通
- OpenGL绘制图形包含20多个基本
- 用OPENGL做的空间探索程序.内有一个飞
- OPENGL做的太阳系五大行星的公转和自
- 基于openGL的三维地形场景的生成
- opengl 贴图教程
- opengl保存bmp图片函数
- OPENGL 字母模型
- QT opengl 绘制立体图形
- Qt加载3D模型
- openGL特效动画
- opengl计算机图形学3D雪人
- OPENGL ES 2.0 播放视频
- opengl 一个有光照效果带纹理会旋转的
- opengl写的台灯
- OpenGL SuperBible Library.rar
- 计算机图形学OpenGL源码
- 基于opengl的光线跟踪源代码
- opengl给旋转的立方体和球体赋予纹理
- glut库
- opengl绘制的三维汽车
- 3D五指棋opengl
- 使用Qt实现的阴影映射源代码
- 3DS文件在OpenGL中的读取和显示源代码
评论
共有 条评论