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

代码片段和文件信息
// 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个文件信息
相关资源
- makefiletest.tar.gz
- MP3文件ID3v2ID3v2APEv2标签读取
- 课程作业:模拟仓库管理系统
- 一个简单实用个人日记管理系统
- 带时间温度显示的室内灯光控制系统
- 成绩管理系统(数据结构)
- FIR低通滤波器 ccs运行环境
- C malloc函数用法
- 嵌入式局域网聊天系统客户端
- 算法竞赛入门经典 第2版刘汝佳+高清
- 基于单片机的GPS定位及显示系统设计
- 链表实现通讯录管理系统
- PowerShell-6.2.1-win-x86.zip
- pl/0编译器 语法分析
- 源程序阅读与调试课程设计报告--学生
- 谁说程序员不浪漫?!基于easyX图形库
- 编译原理课设c编译器
- MCP3421 STM32 Driver
- ADS1100 STM32 Driver
- 单片机89c52与MLX90614红外的测温程序
- stm32f103AES加密 cbc模式
- 单片机 点阵 字模提取软件
- C高级编程讲义-传智播客
- NOIP必学内容之前缀和与差分颜鸿宇
- Skyline高效检索算法实现.zip
- STM8S103系列IO模拟串口通信实现真正串
- stm32f103c8t6移植uC/OS-III基于HAL库的工程
- 温度、一氧化碳、二氧化碳、PM2.5以及
- 王道论坛计算机考研机试指南
- PLC开源资料
评论
共有 条评论