-
大小: 3.85MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-10-28
- 语言: C/C++
- 标签:
资源简介
程序为MFC对话框程序
包括
三次样条插值的计算类,自己封的很好用。
贝塞尔曲线
GDI+平滑曲线
用这三种算法来平滑曲线,在程序中可以很值观的看出来,自己写的,给点辛苦钱吧。
代码片段和文件信息
// 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.
GdiplusStartup(&gdiplusToken &gdiplusStartupInput NULL);
#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;
}
int CBezierApp::ExitInstance()
{
// TODO: Add your specialized code here and/or call the base class
GdiplusShutdown(gdiplusToken);
return CWinApp::ExitInstance();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4446 2009-02-05 14:29 Bezier.dsp
文件 1441 2009-02-05 10:23 Bezier.h
文件 82944 2009-02-04 20:15 Bezier.ncb
文件 51712 2009-02-04 20:15 Bezier.opt
文件 918 2009-02-05 14:29 Bezier.plg
文件 6888 2009-02-05 14:29 Bezier.rc
文件 9737 2009-02-05 14:15 BezierDlg.cpp
文件 2166 2009-02-05 14:18 BezierDlg.h
文件 535 2001-12-31 15:17 CubicSplineAndBezier.dsw
文件 82944 2009-02-05 14:29 CubicSplineAndBezier.ncb
文件 53760 2009-02-05 14:29 CubicSplineAndBezier.opt
文件 4159 2009-02-04 17:04 CubicSplineInterpolation.cpp
文件 2716 2009-02-04 18:24 CubicSplineInterpolation.h
文件 1006 2009-02-05 14:16 resource.h
文件 208 2001-12-31 15:17 StdAfx.cpp
文件 1216 2009-02-05 10:27 StdAfx.h
文件 122971 2009-02-05 14:29 Debug\Bezier.exe
文件 269376 2009-02-05 14:29 Debug\Bezier.ilk
文件 17417 2009-02-05 14:24 Debug\Bezier.obj
文件 6770228 2009-02-05 11:10 Debug\Bezier.pch
文件 361472 2009-02-05 14:29 Debug\Bezier.pdb
文件 3080 2009-02-05 14:29 Debug\Bezier.res
文件 51274 2009-02-05 14:24 Debug\BezierDlg.obj
文件 12808 2009-02-05 11:10 Debug\CubicSplineInterpolation.obj
文件 134335 2009-02-05 11:10 Debug\StdAfx.obj
文件 295936 2009-02-05 14:29 Debug\vc60.idb
文件 462848 2009-02-05 14:28 Debug\vc60.pdb
文件 1078 2001-12-31 15:17 res\Bezier.ico
文件 398 2001-12-31 15:17 res\Bezier.rc2
..A.SH. 3072 2003-07-12 10:07 res\Thumbs.db
............此处省略46个文件信息
- 上一篇:数字识别 c++ MFC
- 下一篇:遥感图像变化检测 VC++
相关资源
- c++ 拉格朗日插值、分段线性插值、三
- 贝赛尔曲线 基于mfc实现的,通过添加
- 三次样条插值函数c++实现
- c++QT5新版画任意阶贝塞尔曲线完整工
- mfc绘制贝塞尔曲线曲面
- 双三次样条插值算法代码
- lagrange插值方法+分段线性插值+三次样
- 数值分析三次样条两种边界matlab代码
- 三次样条插值算法C++实现
- 计算方法中三次样条插值法的实现
- C程序——三次样条插值算法、最小二
- 三次样条插值的C语言实现
- 基于qt5.8写的一个贝塞尔曲线非转存
- opengl动态显示贝塞尔曲线
- 拉格朗日插值、分段线性插值、三次
- BezierCurve 贝塞尔曲线计算 c++源码
- 三次样条插值算法c语言
- 计算机图形学教程第二版实验生成“
- 三次样条插值算法C++源代码
- C语言实现生成贝塞尔曲线(代码)
- C++实战源码-绘制贝塞尔曲线
- 用C++和openGL实现贝塞尔曲线的生成
- B样条和贝塞尔曲线的画法
评论
共有 条评论