📄 polygon2d.h
字号:
// Polygon2D.h: interface for the CPolygon2D class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POLYGON2D_H__30B7E00E_69EA_4FEC_89A3_A7A1A9C53796__INCLUDED_)
#define AFX_POLYGON2D_H__30B7E00E_69EA_4FEC_89A3_A7A1A9C53796__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Point2D.h"
class CPolygon2D
{
public:
CPolygon2D();
virtual ~CPolygon2D();
CPoint2Ds m_Points;
int m_nID;
};
#endif // !defined(AFX_POLYGON2D_H__30B7E00E_69EA_4FEC_89A3_A7A1A9C53796__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -