资源简介
双三次Bezier曲面算法,适用于样条曲线曲面的初学者!
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “Test.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2505 2006-11-30 11:00 案例19-双三次Bezier曲面算法\MainFrm.cpp
文件 1581 2006-11-30 11:00 案例19-双三次Bezier曲面算法\MainFrm.h
文件 503 2007-03-02 15:50 案例19-双三次Bezier曲面算法\P2D.cpp
文件 488 2007-03-02 15:51 案例19-双三次Bezier曲面算法\P2D.h
文件 503 2007-03-02 15:37 案例19-双三次Bezier曲面算法\P3D.cpp
文件 500 2007-03-02 15:38 案例19-双三次Bezier曲面算法\P3D.h
文件 4263 2006-11-30 11:00 案例19-双三次Bezier曲面算法\ReadMe.txt
文件 1049 2007-12-18 13:38 案例19-双三次Bezier曲面算法\resource.h
文件 206 2006-11-30 11:00 案例19-双三次Bezier曲面算法\StdAfx.cpp
文件 1054 2006-11-30 11:00 案例19-双三次Bezier曲面算法\StdAfx.h
文件 254048 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Test.aps
文件 1755 2010-07-16 14:15 案例19-双三次Bezier曲面算法\Test.clw
文件 5270 2007-09-07 16:40 案例19-双三次Bezier曲面算法\Test.dsp
文件 531 2006-11-30 11:08 案例19-双三次Bezier曲面算法\Test.dsw
文件 1334 2006-11-30 11:00 案例19-双三次Bezier曲面算法\Test.h
文件 279552 2010-07-16 14:16 案例19-双三次Bezier曲面算法\Test.ncb
文件 10990 2007-12-18 13:38 案例19-双三次Bezier曲面算法\Test.rc
文件 1702 2006-11-30 11:00 案例19-双三次Bezier曲面算法\TestDoc.cpp
文件 1453 2006-11-30 11:00 案例19-双三次Bezier曲面算法\TestDoc.h
文件 2593 2007-12-18 11:47 案例19-双三次Bezier曲面算法\TestView.h
文件 4220 2008-06-28 11:17 案例19-双三次Bezier曲面算法\Test.cpp
文件 8625 2008-06-28 11:17 案例19-双三次Bezier曲面算法\TestView.cpp
文件 2174 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Test.plg
文件 50688 2010-07-16 14:16 案例19-双三次Bezier曲面算法\Test.opt
文件 231088 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\Test.res
文件 214016 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\vc60.idb
文件 364544 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\vc60.pdb
文件 105738 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\StdAfx.obj
文件 47579 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\TestView.obj
文件 14742 2010-07-16 14:13 案例19-双三次Bezier曲面算法\Debug\TestDoc.obj
............此处省略24个文件信息
- 上一篇:CC2530安防监控系统硬件开发
- 下一篇:bluepoint蓝牙上网0.89汉化版
评论
共有 条评论