• 大小: 2.65MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-19
  • 语言: 其他
  • 标签: c语言  

资源简介

网格剖分算法,,自动生成三角网格及四边形网格。。有限

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “testDelaunay.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


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1352  2007-04-29 12:01  testDelaunay\debug.txt

     文件      53760  2007-04-29 16:20  testDelaunay\testDelaunay.opt

     文件       2390  2007-04-29 11:19  testDelaunay\testDelaunay.clw

     文件      13403  2007-04-29 12:28  testDelaunay\testDelaunayView.cpp

     文件       2764  2007-04-29 12:24  testDelaunay\testDelaunayView.h

     文件       4455  2007-04-28 20:51  testDelaunay\ReadMe.txt

     文件       1422  2007-04-28 20:51  testDelaunay\testDelaunay.h

     文件       4317  2007-04-28 20:51  testDelaunay\testDelaunay.cpp

     文件       1054  2007-04-28 20:51  testDelaunay\StdAfx.h

     文件        214  2007-04-28 20:51  testDelaunay\StdAfx.cpp

     文件       1581  2007-04-28 20:51  testDelaunay\MainFrm.h

     文件       2513  2007-04-28 20:51  testDelaunay\MainFrm.cpp

     文件       1541  2007-04-28 20:51  testDelaunay\testDelaunayDoc.h

     文件       1862  2007-04-28 20:51  testDelaunay\testDelaunayDoc.cpp

     文件        500  2007-04-28 20:51  testDelaunay\Resource.h

     文件      10637  2007-04-28 20:51  testDelaunay\testDelaunay.rc

     文件        549  2007-04-28 20:51  testDelaunay\testDelaunay.dsw

     文件       1205  2007-04-29 12:28  testDelaunay\testDelaunay.plg

     文件      28788  2007-04-28 21:04  testDelaunay\testDelaunay.aps

     文件       4678  2007-04-28 21:11  testDelaunay\testDelaunay.dsp

     文件   10202112  2008-03-21 12:11  testDelaunay\testDelaunay.ncb

     文件       8411  2008-03-21 10:32  testDelaunay\testDelaunay.vcproj

     文件        888  2008-03-21 10:32  testDelaunay\testDelaunay.sln

    ..A..H.     10240  2008-03-21 12:11  testDelaunay\testDelaunay.suo

     文件       1401  2008-03-21 12:11  testDelaunay\testDelaunay.vcproj.QQ.Administrator.user

     文件        404  2007-04-28 20:51  testDelaunay\res\testDelaunay.rc2

     文件       1078  2007-04-28 20:51  testDelaunay\res\testDelaunayDoc.ico

     文件       1078  2007-04-28 20:51  testDelaunay\res\testDelaunay.ico

     文件       1078  2007-04-28 20:51  testDelaunay\res\Toolbar.bmp

     目录          0  2008-03-21 13:39  testDelaunay\Debug

............此处省略6个文件信息

评论

共有 条评论