📄 geoline.h
字号:
// GeoLine.h: interface for the GeoLine class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GEOLINE_H__D5977F5A_9183_11D7_908B_00A00CC807C7__INCLUDED_)
#define AFX_GEOLINE_H__D5977F5A_9183_11D7_908B_00A00CC807C7__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//
//直线类
//
#include "GeoTwoPoint.h"
class GeoLine : public GeoTwoPoint
{
public:
GeoLine();
GeoLine(CPoint p1, CPoint p2) { SetTwoPoint(p1, p2); }
virtual ~GeoLine();
void Draw(CDC &dc);
};
#endif // !defined(AFX_GEOLINE_H__D5977F5A_9183_11D7_908B_00A00CC807C7__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -