• 大小: 2.23MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-21
  • 语言: C/C++
  • 标签: 曲线  

资源简介

贝赛尔曲线 基于mfc实现的,通过添加点画出贝塞尔曲线。有实现的窗口,有添加和移动按钮,可以画出任意的贝塞尔曲线。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Bezier.h“
#include “BezierDlg.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)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
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

CBezierDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-06-30 16:49  贝赛尔曲线\
     文件       19928  2011-06-03 07:40  贝赛尔曲线\Bezier.aps
     文件         864  2011-06-02 18:34  贝赛尔曲线\Bezier.clw
     文件        2063  2001-12-31 15:17  贝赛尔曲线\Bezier.cpp
     文件        4159  2001-12-31 15:17  贝赛尔曲线\Bezier.dsp
     文件         535  2001-12-31 15:17  贝赛尔曲线\Bezier.dsw
     文件        1324  2001-12-31 15:17  贝赛尔曲线\Bezier.h
     文件       91136  2011-06-03 07:42  贝赛尔曲线\Bezier.ncb
     文件       49664  2011-06-02 22:54  贝赛尔曲线\Bezier.opt
     文件         437  2011-06-02 18:47  贝赛尔曲线\Bezier.plg
     文件        5141  2011-06-02 18:31  贝赛尔曲线\Bezier.rc
     文件        6129  2003-07-15 15:56  贝赛尔曲线\BezierDlg.cpp
     文件        1746  2003-07-12 08:53  贝赛尔曲线\BezierDlg.h
     文件        2916  2004-10-04 21:33  贝赛尔曲线\Cn700.com.txt
     目录           0  2011-06-02 18:47  贝赛尔曲线\Debug\
     文件      106571  2011-06-02 18:34  贝赛尔曲线\Debug\Bezier.exe
     文件      192212  2011-06-02 18:34  贝赛尔曲线\Debug\Bezier.ilk
     文件       12916  2011-06-02 18:34  贝赛尔曲线\Debug\Bezier.obj
     文件     5499464  2011-06-02 18:34  贝赛尔曲线\Debug\Bezier.pch
     文件      271360  2011-06-02 18:34  贝赛尔曲线\Debug\Bezier.pdb
     文件        2324  2011-06-02 18:47  贝赛尔曲线\Debug\Bezier.res
     文件       26422  2011-06-02 18:34  贝赛尔曲线\Debug\BezierDlg.obj
     文件      105493  2011-06-02 18:34  贝赛尔曲线\Debug\StdAfx.obj
     文件      189440  2011-06-02 18:47  贝赛尔曲线\Debug\vc60.idb
     文件      364544  2011-06-02 18:34  贝赛尔曲线\Debug\vc60.pdb
     文件       10038  2008-01-22 08:54  贝赛尔曲线\RCa02528
     文件         208  2001-12-31 15:17  贝赛尔曲线\StdAfx.cpp
     文件        1054  2001-12-31 15:17  贝赛尔曲线\StdAfx.h
     文件         223  2004-10-04 20:06  贝赛尔曲线\readme.htm
     文件        2470  2004-10-04 21:37  贝赛尔曲线\readme.txt
     目录           0  2007-11-11 10:32  贝赛尔曲线\res\
............此处省略3个文件信息

评论

共有 条评论