• 大小: 149KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-06
  • 语言: C/C++
  • 标签: 3D茶壶  MFC  OPENGL  

资源简介

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个文件信息

评论

共有 条评论