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

源代码在线查看: border.cpp

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

相关代码

				// Border.cpp: implementation of the CBorder class.
				//
				//////////////////////////////////////////////////////////////////////
				
				#include "stdafx.h"
				#include "Delaunay.h"
				#include "Border.h"
				
				#ifdef _DEBUG
				#undef THIS_FILE
				static char THIS_FILE[]=__FILE__;
				#define new DEBUG_NEW
				#endif
				
				//////////////////////////////////////////////////////////////////////
				// Construction/Destruction
				//////////////////////////////////////////////////////////////////////
				
				CBorder::CBorder()
				{
				
				}
				
				CBorder::~CBorder()
				{
				
				}
				
				CBorder::CBorder(int p1, int p2)
				{
					m_p1=p1;
					m_p2=p2;
				
				}
							

相关资源