⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 border.h

📁 daunay三角网格生成 相当好的一个算法
💻 H
字号:
// 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 <math.h>
#include <stdio.h>
#include <stdlib.h>

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_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -