link.h

来自「凸包可视化程序」· C头文件 代码 · 共 24 行

H
24
字号
// Link.h: interface for the Link class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LINK_H__C80CBAFB_4504_4BC3_8CE3_E8965543A3E2__INCLUDED_)
#define AFX_LINK_H__C80CBAFB_4504_4BC3_8CE3_E8965543A3E2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MyPoint.h"
class Link  
{
public:
	Link();
	virtual ~Link();
    MyPoint *m_First;
	MyPoint *Back();
	int Length() const;
	void Append( MyPoint&);
};

#endif // !defined(AFX_LINK_H__C80CBAFB_4504_4BC3_8CE3_E8965543A3E2__INCLUDED_)

⌨️ 快捷键说明

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