资源简介
本程序实现绘制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个文件信息
- 上一篇:stereoMatch
- 下一篇:简单的PL0编译器
相关资源
- Windows异步套接字网络编程
- VC 获得文件属性 获取文件的创建时
- 基于MVC模式的会员管理系统
- silicon lab公司的收音IC SI47XX全套开发工
- 读者写者问题(读者优先,写者优先
- MFC程序-碰撞的小球
- vc 柱形图 CBarChart
- 用vc 写的导线测量,针对刚学测绘的
- 用VC 编写的仿QQ聊天室程序源代码
- 栅栏填充算法源码(VC)
- 简单的房屋租赁系统
- .net网站服装销售系统(MVC)
-
ob
jectARX给Auto CAD加工具条 - blowfish的vc2008工程.rar
- 画图程序MFC/VC/VC CRectTracker 串行化
- capon波束形成算法-VC实现
- 读取串口数据并画实时曲线的VC 程序
- VC 游戏编程—附源代码
- IpHlpApi.h&IpHlpApi.lib
- vc 6.0开发的流程图编辑器
- VC 天空盒(skyBox)实现(附源代码)
- c MFC 画多边形
- keil vcom windows 7 64bit 驱动
- vc URL编解码类
- vc编写中国象棋详细源码注释并附有视
- VC 围棋源代码
- 用VC 编写的基于SNMP的路由器拓扑程序
- vc利用MFC底层开发的二维GIS管理软件,
- 兰勃托地图投影VC源码
- 清华大学郑莉C 语言程序设计课件
评论
共有 条评论