• 大小: 3.97MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-02
  • 语言: C/C++
  • 标签:

资源简介

本程序代码可以绘制多种图形曲线,采用真彩工具条做界面,分别编写Bezier曲线,B-样条曲线,Hermit曲线;本程序采用c++

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Bezier.h“

#include “MainFrm.h“
#include “BezierDoc.h“
#include “BezierView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CBezierApp

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

/////////////////////////////////////////////////////////////////////////////
// CBezierApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CBezierApp object

CBezierApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CBezierApp initialization

BOOL CBezierApp::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(CBezierDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CBezierView));
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;

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

     文件    2461816  2009-12-07 16:18  Bezier\Bezier.aps

     文件       2592  2009-12-07 16:19  Bezier\Bezier.clw

     文件       4209  2006-03-02 21:17  Bezier\Bezier.cpp

     文件       4831  2009-12-03 20:30  Bezier\Bezier.dsp

     文件        537  2006-02-25 16:23  Bezier\Bezier.dsw

     文件       1356  2006-02-25 16:22  Bezier\Bezier.h

     文件     156672  2009-12-07 16:19  Bezier\Bezier.ncb

     文件      56832  2009-12-07 16:19  Bezier\Bezier.opt

     文件       1211  2009-12-07 16:18  Bezier\Bezier.plg

     文件      12528  2009-12-03 22:16  Bezier\Bezier.rc

     文件       1742  2006-02-25 16:22  Bezier\BezierDoc.cpp

     文件       1475  2006-02-25 16:22  Bezier\BezierDoc.h

     文件      14634  2009-12-07 16:18  Bezier\BezierView.cpp

     文件       2453  2009-12-03 22:15  Bezier\BezierView.h

     文件       2938  2009-12-03 21:12  Bezier\MainFrm.cpp

     文件       1549  2009-12-03 21:04  Bezier\MainFrm.h

     文件       4311  2006-02-25 16:22  Bezier\ReadMe.txt

     文件       1245  2009-12-03 22:16  Bezier\resource.h

     文件        208  2006-02-25 16:22  Bezier\StdAfx.cpp

     文件       1054  2006-02-25 16:22  Bezier\StdAfx.h

     文件       2607  2002-08-21 17:53  Bezier\TrueColorToolBar.cpp

     文件       1486  2002-08-21 17:05  Bezier\TrueColorToolBar.h

     文件          9  2006-10-09 11:34  Bezier\_desktop.ini

     文件    3055720  2009-12-07 16:18  Bezier\Debug\Bezier.exe

     文件     495308  2009-12-07 16:18  Bezier\Debug\Bezier.ilk

     文件      23196  2009-12-03 20:24  Bezier\Debug\Bezier.obj

     文件    5501952  2009-12-03 20:23  Bezier\Debug\Bezier.pch

     文件     484352  2009-12-07 16:18  Bezier\Debug\Bezier.pdb

     文件    2439216  2009-12-03 22:18  Bezier\Debug\Bezier.res

     文件      14969  2009-12-03 20:23  Bezier\Debug\BezierDoc.obj

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

评论

共有 条评论

相关资源