资源简介
B样条曲线反求输出点列.rar,根据形值点,反求控制点的源码
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “Move.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
//##ModelId=42C3BACA0020
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
//##ModelId=42C3BACA0030
CMainframe::~CMainframe()
{
}
//##ModelId=42C3BACA005D
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;
}
//##ModelId=42C3BACA0021
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
//##ModelId=42C3BACA0032
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
//##ModelId=42C3BACA003F
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 234496 2005-08-23 20:26 Move.opt
文件 3546 2005-08-23 19:43 Move.plg
文件 12315 2005-06-15 16:12 Move.rc
文件 1858 2005-06-30 17:26 MoveDoc.cpp
文件 1641 2005-06-30 17:26 MoveDoc.h
文件 16623 2005-08-04 20:24 MoveView.cpp
文件 3773 2005-08-03 12:06 MoveView.h
文件 3162 2005-06-15 15:33 OpenGLText.cpp
文件 1068 2005-06-15 15:37 OpenGLText.h
文件 4263 2005-06-09 21:15 ReadMe.txt
文件 776 2005-06-10 00:07 resource.h
文件 206 2005-06-09 21:15 StdAfx.cpp
文件 1054 2005-06-09 21:15 StdAfx.h
文件 13773 2005-08-04 17:03 ThreeTimeSpline.cpp
文件 1979 2005-08-04 16:57 ThreeTimeSpline.h
目录 0 2005-08-04 20:23 res
文件 1078 2005-06-09 21:15 res\Move.ico
文件 396 2005-06-09 21:15 res\Move.rc2
文件 1078 2005-06-09 21:15 res\MoveDoc.ico
文件 1078 2005-06-09 21:15 res\Toolbar.bmp
目录 0 2005-08-04 20:23 Restore.1
文件 1188 2005-06-30 17:26 Restore.1\Move.lst
文件 1425 2005-01-04 15:49 Restore.1\~2DArray.~h
文件 1895 2005-06-20 15:30 Restore.1\~LineArray.~h
文件 2505 2005-06-09 21:15 Restore.1\~MainFrm.~cpp
文件 1581 2005-06-09 21:15 Restore.1\~MainFrm.~h
文件 4173 2005-06-09 21:15 Restore.1\~Move.~cpp
文件 1334 2005-06-09 21:15 Restore.1\~Move.~h
文件 1702 2005-06-09 21:15 Restore.1\~MoveDoc.~cpp
文件 1453 2005-06-09 21:15 Restore.1\~MoveDoc.~h
............此处省略19个文件信息
- 上一篇:GSM MODEM驱动
- 下一篇:Z-Stack Mesh 1.0.0 协议栈
评论
共有 条评论