• 大小: 50KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-09
  • 语言: 其他
  • 标签: OPenGL  

资源简介

在VC中用OPenGL绘制模型,然后经过渲染后,添加定时器即可显示比较好的效果。

资源截图

代码片段和文件信息

// cmy.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “cmy.h“

#include “MainFrm.h“
#include “cmyDoc.h“
#include “cmyView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCmyApp

BEGIN_MESSAGE_MAP(CCmyApp CWinApp)
//{{AFX_MSG_MAP(CCmyApp)
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)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCmyApp construction

CCmyApp::CCmyApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CCmyApp object

CCmyApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCmyApp initialization

BOOL CCmyApp::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(CCmyDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CCmyView));
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;
}


/////////////////////////////////////////

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4428  2006-01-31 12:39  茶杯\MainFrm.cpp

     文件       1593  2006-01-13 14:12  茶杯\MainFrm.h

     文件       4239  2006-01-31 11:47  茶杯\ReadMe.txt

     文件        684  2006-02-04 09:42  茶杯\Resource.h

     文件        205  2006-01-31 11:47  茶杯\StdAfx.cpp

     文件       1054  2006-01-31 11:47  茶杯\StdAfx.h

     文件      27872  2006-02-05 23:20  茶杯\cmy.aps

     文件       2122  2006-02-05 23:20  茶杯\cmy.clw

     文件       4155  2006-01-31 11:47  茶杯\cmy.cpp

     文件       4436  2006-01-31 12:57  茶杯\cmy.dsp

     文件        529  2006-01-31 11:47  茶杯\cmy.dsw

     文件       1323  2006-01-31 11:47  茶杯\cmy.h

     文件     181248  2010-04-16 22:06  茶杯\cmy.ncb

     文件       1864  2010-04-16 22:05  茶杯\cmy.plg

     文件      11434  2006-02-05 20:02  茶杯\cmy.rc

     文件       1682  2006-01-31 11:47  茶杯\cmyDoc.cpp

     文件       1442  2006-01-31 11:47  茶杯\cmyDoc.h

     文件      14188  2006-03-01 12:28  茶杯\cmyView.cpp

     文件       2401  2006-02-05 19:48  茶杯\cmyView.h

     文件      48640  2010-04-16 22:06  茶杯\cmy.opt

     文件        598  2006-02-05 20:02  茶杯\res\Toolbar.bmp

     文件       1078  2006-02-05 20:02  茶杯\res\cmy.ico

     文件        395  2006-01-31 11:47  茶杯\res\cmy.rc2

     文件       1078  2006-01-31 11:47  茶杯\res\cmyDoc.ico

     目录          0  2010-04-16 22:06  茶杯\res

     目录          0  2010-04-16 22:06  茶杯

----------- ---------  ---------- -----  ----

               318688                    26


评论

共有 条评论