资源简介

本程序实现绘制Bezier曲面和B样条曲面

资源截图

代码片段和文件信息

// 050301chulaixi05.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “050301chulaixi05.h“

#include “MainFrm.h“
#include “050301chulaixi05Doc.h“
#include “050301chulaixi05View.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMy050301chulaixi05App

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

/////////////////////////////////////////////////////////////////////////////
// CMy050301chulaixi05App construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CMy050301chulaixi05App object

CMy050301chulaixi05App theApp;

/////////////////////////////////////////////////////////////////////////////
// CMy050301chulaixi05App initialization

BOOL CMy050301chulaixi05App::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(CMy050301chulaixi05Doc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CMy050301chulaixi05View));
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 updat

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

     文件      26520  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05.aps

     文件       1849  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05.clw

     文件       4322  2008-06-17 10:53  Bezier曲面和B样条曲面\050301chulaixi05.cpp

     文件       4697  2008-06-17 10:53  Bezier曲面和B样条曲面\050301chulaixi05.dsp

     文件        540  2008-06-17 11:43  Bezier曲面和B样条曲面\050301chulaixi05.dsw

     文件       1476  2008-06-17 10:53  Bezier曲面和B样条曲面\050301chulaixi05.h

     文件      74752  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05.ncb

     文件      48640  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05.opt

     文件        266  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05.plg

     文件       9615  2008-06-26 18:47  Bezier曲面和B样条曲面\050301chulaixi05.rc

     文件       2019  2008-06-17 10:54  Bezier曲面和B样条曲面\050301chulaixi05Doc.cpp

     文件       1599  2008-06-17 10:53  Bezier曲面和B样条曲面\050301chulaixi05Doc.h

     文件       8069  2008-06-26 18:48  Bezier曲面和B样条曲面\050301chulaixi05View.cpp

     文件       1818  2008-06-17 10:56  Bezier曲面和B样条曲面\050301chulaixi05View.h

     文件     122974  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.exe

     文件     309596  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.ilk

     文件      23624  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.obj

     文件    5505248  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.pch

     文件     427008  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.pdb

     文件       5700  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05.res

     文件      15689  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05Doc.obj

     文件      36916  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\050301chulaixi05View.obj

     文件      18736  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\MainFrm.obj

     文件     105750  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\StdAfx.obj

     文件     197632  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\vc60.idb

     文件     364544  2008-06-26 18:48  Bezier曲面和B样条曲面\Debug\vc60.pdb

     文件       2029  2008-06-17 10:53  Bezier曲面和B样条曲面\MainFrm.cpp

     文件       1553  2008-06-17 10:53  Bezier曲面和B样条曲面\MainFrm.h

     文件       4240  2008-06-17 10:53  Bezier曲面和B样条曲面\ReadMe.txt

     文件       1078  2008-06-17 10:53  Bezier曲面和B样条曲面\res\050301chulaixi05.ico

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

评论

共有 条评论