资源简介
delauney三角网vc++算法,一种简便高效的三角网生成算法。
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “tin2.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 2003-10-29 14:15 delauney三角网\MainFrm.cpp
文件 1581 2003-10-29 14:15 delauney三角网\MainFrm.h
文件 4263 2003-10-29 14:15 delauney三角网\ReadMe.txt
文件 1078 2003-10-29 14:15 delauney三角网\res\tin2.ico
文件 396 2003-10-29 14:15 delauney三角网\res\tin2.rc2
文件 1078 2003-10-29 14:15 delauney三角网\res\tin2Doc.ico
文件 1078 2003-10-29 14:15 delauney三角网\res\Toolbar.bmp
文件 779 2003-10-29 14:35 delauney三角网\Resource.h
文件 206 2003-10-29 14:15 delauney三角网\StdAfx.cpp
文件 1054 2003-10-29 14:15 delauney三角网\StdAfx.h
文件 28696 2005-12-25 18:14 delauney三角网\tin2.aps
文件 2313 2006-01-01 11:31 delauney三角网\tin2.clw
文件 4173 2003-10-29 14:15 delauney三角网\tin2.cpp
文件 5123 2005-12-25 12:31 delauney三角网\tin2.dsp
文件 533 2003-10-29 14:15 delauney三角网\tin2.dsw
文件 1334 2003-10-29 14:15 delauney三角网\tin2.h
文件 418816 2006-01-01 11:31 delauney三角网\tin2.ncb
文件 58880 2006-01-01 11:31 delauney三角网\tin2.opt
文件 2095 2005-12-25 18:15 delauney三角网\tin2.plg
文件 11833 2005-12-25 12:03 delauney三角网\tin2.rc
文件 1702 2003-10-29 14:15 delauney三角网\tin2Doc.cpp
文件 1453 2003-10-29 14:15 delauney三角网\tin2Doc.h
文件 3037 2005-12-25 12:55 delauney三角网\tin2View.cpp
文件 1887 2005-12-25 11:29 delauney三角网\tin2View.h
文件 746 2003-10-29 15:10 delauney三角网\T_line.cpp
文件 582 2003-10-29 15:10 delauney三角网\T_line.h
文件 552 2003-10-29 14:17 delauney三角网\T_point.cpp
文件 534 2003-10-29 14:17 delauney三角网\T_point.h
文件 11252 2005-12-25 12:48 delauney三角网\T_TIN.cpp
文件 972 2005-12-25 12:29 delauney三角网\T_TIN.h
............此处省略7个文件信息
- 上一篇:VC++ MFC 的计算器的详细设计
- 下一篇:AD5420驱动C语言
评论
共有 条评论