采用序列化对象CArchive读入原始数据构建Delaunay三角网的VC++代码。可以鼠标点击加新点进行构网

源代码在线查看: border.h

软件大小: 147 K
上传用户: fpeisheng
关键词: CArchive Delaunay VC 序列
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Border.h: interface for the CBorder class.
				//
				//////////////////////////////////////////////////////////////////////
				
				#if !defined(AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_)
				#define AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_
				
				#if _MSC_VER > 1000
				#pragma once
				#endif // _MSC_VER > 1000
				
				#include 
				#include 
				#include 
				
				class CBorder : public CObject  
				{
				public:
					CBorder(int p1,int p2);
					int m_p2;//Save the point's mark of the border in m_point 
					int m_p1;
					CBorder();
					virtual ~CBorder();
				
				};
				
				#endif // !defined(AFX_BORDER_H__0CB1CBA5_22C4_11D4_B502_BB43AB642844__INCLUDED_)
							

相关资源