• 大小: 213KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-13
  • 语言: 其他
  • 标签: opengl  网格模型  

资源简介

在opengl环境下,读取自定义的三维曲面网格模型,有点,线和曲面三种显示方式,能够缩放、旋转、平移,并加入了光照,反走样等,是很好的opengl入门程序,并适合在此程序基础上做一些图形方面的课题研究。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Drawobject.h“

#include “MainFrm.h“
#include “DrawobjectDoc.h“
#include “DrawobjectView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDrawobjectApp

BEGIN_MESSAGE_MAP(CDrawobjectApp CWinApp)
//{{AFX_MSG_MAP(CDrawobjectApp)
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()

/////////////////////////////////////////////////////////////////////////////
// CDrawobjectApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CDrawobjectApp object

CDrawobjectApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDrawobjectApp initialization

BOOL CDrawobjectApp::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(CDrawobjectDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDrawobjectView));
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->ShowW

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

     文件      34688  2007-10-11 23:18  Drawobject\Drawobject.aps

     文件       5744  2007-10-16 22:25  Drawobject\Drawobject.clw

     文件       4290  2007-04-09 21:31  Drawobject\Drawobject.cpp

     文件       4908  2007-04-07 22:40  Drawobject\Drawobject.dsp

     文件        545  2007-04-06 00:48  Drawobject\Drawobject.dsw

     文件       1400  2007-04-06 00:48  Drawobject\Drawobject.h

     文件     222208  2007-10-16 22:25  Drawobject\Drawobject.ncb

     文件        254  2007-10-16 22:24  Drawobject\Drawobject.plg

     文件      17263  2007-04-11 11:21  Drawobject\Drawobject.rc

     文件       1822  2007-04-06 00:48  Drawobject\DrawobjectDoc.cpp

     文件       1519  2007-04-06 00:48  Drawobject\DrawobjectDoc.h

     文件       2329  2007-04-07 21:09  Drawobject\LightingDlg.cpp

     文件       1520  2007-04-07 21:09  Drawobject\LightingDlg.h

     文件       2512  2007-04-09 21:31  Drawobject\MainFrm.cpp

     文件       1581  2007-04-06 00:48  Drawobject\MainFrm.h

     文件       4407  2007-04-06 00:48  Drawobject\ReadMe.txt

     文件       2488  2007-04-11 11:21  Drawobject\resource.h

     文件       3026  2007-04-08 20:03  Drawobject\SetColorDlg.cpp

     文件       1665  2007-04-08 20:03  Drawobject\SetColorDlg.h

     文件        212  2007-04-06 00:48  Drawobject\StdAfx.cpp

     文件       1327  2007-04-06 00:48  Drawobject\StdAfx.h

     文件      49170  2005-09-14 13:44  Drawobject\bun_sim.smf

     文件     129857  2005-09-21 16:38  Drawobject\horse.smf

     文件       4176  2007-10-16 22:08  Drawobject\DrawobjectView.h

     文件      25346  2007-10-16 22:20  Drawobject\DrawobjectView.cpp

     文件     187089  2007-10-16 21:37  Drawobject\cow.smf

     文件        416  2007-10-14 22:21  Drawobject\platonic20.smf

     文件      65158  2007-10-14 21:47  Drawobject\cone.smf

     文件      52736  2007-10-16 22:25  Drawobject\Drawobject.opt

     文件       1078  2007-04-06 00:48  Drawobject\RES\Drawobject.ico

............此处省略9个文件信息

评论

共有 条评论