资源简介
简单多边形的屋脊线计算算法.严格按照各角平分线求交计算,非常精确。凸多边形基本没问题,凹多边形还需进一步改进算法。
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “RidegLine.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)
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1655 2007-11-20 21:54 中轴线 RidegLine 2.0\TLine.h
文件 3922 2007-11-21 22:12 中轴线 RidegLine 2.0\MyList.cpp
文件 2372 2007-11-11 11:29 中轴线 RidegLine 2.0\MainFrm.cpp
文件 4160 2007-11-22 12:53 中轴线 RidegLine 2.0\TPlane.cpp
文件 2600 2009-04-05 00:15 中轴线 RidegLine 2.0\RidegLine.clw
文件 4383 2007-11-10 20:34 中轴线 RidegLine 2.0\ReadMe.txt
文件 1389 2007-11-10 20:34 中轴线 RidegLine 2.0\RidegLine.h
文件 4263 2007-11-10 20:34 中轴线 RidegLine 2.0\RidegLine.cpp
文件 1054 2007-11-10 20:34 中轴线 RidegLine 2.0\StdAfx.h
文件 211 2007-11-10 20:34 中轴线 RidegLine 2.0\StdAfx.cpp
文件 1440 2007-11-11 11:18 中轴线 RidegLine 2.0\MainFrm.h
文件 1508 2007-11-10 20:34 中轴线 RidegLine 2.0\RidegLineDoc.h
文件 1802 2007-11-10 20:34 中轴线 RidegLine 2.0\RidegLineDoc.cpp
文件 2076 2007-11-25 02:10 中轴线 RidegLine 2.0\TRidegLine.h
文件 1143 2007-11-16 21:20 中轴线 RidegLine 2.0\TVector.h
文件 526 2007-11-10 20:34 中轴线 RidegLine 2.0\RidegLine.dsw
文件 4721 2006-11-25 13:21 中轴线 RidegLine 2.0\TLine.cpp
文件 1182 2007-11-12 12:49 中轴线 RidegLine 2.0\TPlane.h
文件 1881 2007-11-17 10:34 中轴线 RidegLine 2.0\TPoint.cpp
文件 1379 2007-11-17 10:34 中轴线 RidegLine 2.0\TPoint.h
文件 1973 2009-04-05 01:16 中轴线 RidegLine 2.0\RidegLine.plg
文件 882 2007-11-25 12:06 中轴线 RidegLine 2.0\RidegLine.sln
..A..H. 28160 2008-05-19 17:06 中轴线 RidegLine 2.0\RidegLine.suo
文件 11566 2007-11-25 12:06 中轴线 RidegLine 2.0\RidegLine.vcproj
文件 1427 2008-05-19 17:06 中轴线 RidegLine 2.0\RidegLine.vcproj.2216E8DC1BFE49C.Administrator.user
文件 1278 2007-11-19 20:09 中轴线 RidegLine 2.0\TVector.cpp
文件 1227 2007-11-21 22:06 中轴线 RidegLine 2.0\MyList.h
文件 99328 2009-04-05 01:18 中轴线 RidegLine 2.0\RidegLine.ncb
文件 9443 2009-04-04 22:31 中轴线 RidegLine 2.0\TRidegLine.cpp
文件 807 2009-04-04 23:05 中轴线 RidegLine 2.0\Resource.h
............此处省略19个文件信息
- 上一篇:FTP断点续传的原理
- 下一篇:OLED点阵中文字符数字变量显示的驱动
相关资源
- 蛐蛐V3.0.zip
- 原创鼠标连点器
- 数据库课程设计大作业-餐饮管理系统
- vc实现dicom读取与显示
- MODBUS协议 vc实现
- NurbsSurf.rar
- VC开发树列表
- 局域网聊天程序基于套接字
- 实现cgridlistctrlex,并使用鼠标响应事
- 拓扑排序输出所有可能的拓扑排序
- IBindStatusCallback子类
- 局域网聊天室资源百度云链接
- 实验一 绘图类及其对象程序设计
- 考试系统中Word操作题自动阅卷的实现
- 进程调度的设计与实现图形界面实现
- VC树形控件 自己封装的树形控件拓展
- AUTO_CAD.rar
- 模拟POS机程序源码
-
实现透明窗口(使用Updatela
yeredWin - 可以实时变化的柱状图
- 自己分装的一个winhttp类
- 小型公司工资管理系统设计
- PCL做界面程序代码
- OpenGL实现下雪的效果
- 打印模板工具
- 使用CAsyncSocket完成的客户端和服务端
- 排课表程序拓扑排序
- GDAL无缝图片拼接
- 树形可编辑listctrl
- Ntp客户端校时工具精简高效
评论
共有 条评论