资源简介
使用MFC实现三条曲线,Bezier支持多次,B样条曲线默认为3次,可以修改。内附有说明文档。
代码片段和文件信息
// 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;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-08 13:15 BSpline\
文件 29276 2018-12-08 13:15 BSpline\BSpline.aps
文件 2707 2018-12-08 13:15 BSpline\BSpline.clw
文件 4227 2018-12-06 21:47 BSpline\BSpline.cpp
文件 4941 2018-12-08 13:12 BSpline\BSpline.dsp
文件 522 2018-12-06 21:47 BSpline\BSpline.dsw
文件 1367 2018-12-06 21:47 BSpline\BSpline.h
文件 115712 2018-12-08 13:15 BSpline\BSpline.ncb
文件 50688 2018-12-08 13:15 BSpline\BSpline.opt
文件 248 2018-12-08 13:15 BSpline\BSpline.plg
文件 12262 2018-12-08 13:12 BSpline\BSpline.rc
文件 1762 2018-12-06 21:47 BSpline\BSplineDoc.cpp
文件 1486 2018-12-06 21:47 BSpline\BSplineDoc.h
文件 10364 2018-12-08 13:10 BSpline\BSplineView.cpp
文件 2256 2018-12-08 12:59 BSpline\BSplineView.h
目录 0 2018-12-08 13:13 BSpline\Debug\
文件 131212 2018-12-08 13:12 BSpline\Debug\BSpline.exe
文件 344912 2018-12-08 13:12 BSpline\Debug\BSpline.ilk
文件 23310 2018-12-06 21:47 BSpline\Debug\BSpline.obj
文件 5497000 2018-12-06 21:47 BSpline\Debug\BSpline.pch
文件 525312 2018-12-08 13:12 BSpline\Debug\BSpline.pdb
文件 7532 2018-12-08 13:12 BSpline\Debug\BSpline.res
文件 15079 2018-12-06 21:47 BSpline\Debug\BSplineDoc.obj
文件 47810 2018-12-08 13:10 BSpline\Debug\BSplineView.obj
文件 10777 2018-12-08 13:05 BSpline\Debug\Dialog1.obj
文件 10887 2018-12-08 13:05 BSpline\Debug\Dialog2.obj
文件 20229 2018-12-06 21:47 BSpline\Debug\MainFrm.obj
文件 4639 2018-12-06 21:57 BSpline\Debug\P2.obj
文件 105912 2018-12-06 21:47 BSpline\Debug\StdAfx.obj
文件 222208 2018-12-08 13:15 BSpline\Debug\vc60.idb
文件 364544 2018-12-08 13:10 BSpline\Debug\vc60.pdb
............此处省略112个文件信息
- 上一篇:王桂林老师课件 c++基础与提高.pdf
- 下一篇:ug cam 二次开发源码
相关资源
- mfc 调用redis
- MFC视频播放器源码(支持avi/wma/mp3等格
- mfc绘图大全(画直线、矩形、椭圆)
- MFC控件重绘
- hook,捕获所有案件,查找所有窗口,
- (学习)VS2010之MFC入门到精通教程
- MFC文档_视图_框架_模板结构体系深入
- 简单员工管理系统(适合初学MFC)
- MFC五子棋游戏
- MFC UDP编程
- MFC的异步网络通讯应用程序
- C++MFC模块讲解,黑发程序员课程整理
- 一个简单而强大的基于MFC的web server源
- 基于MFC的VC++仿QQ浏览器源码(雏形)
- MFCaccess.rar
- VC++MFC课程设计的学生成绩管理系统
- MFC 日历控件 万年历 Calendar自绘
- CrystalDiskInfo-HDD/SSD硬盘信息,SMART信息
- MFC自定义界面HUI,高效简单,含详细
- 仿射密码-Affine cipher
- c++MFC车牌自动识别定位,只能定位和
- mfc+sql 酒店客房管理系统
- 基于图割的图像分割OpenCV+MFC实现
- MFC绘制Bezier曲线B样条曲线曲线拟合
- MFC坦克大战
- VC++ 中国象棋经典游戏源代码
- 课程设计: MFC 学生信息管理系统
- MFC对ACCESS数据库的增加、删除、查找
- vc.6.0 MFC 人事管理系统源码
- MFC 在线考试系统
评论
共有 条评论