📄 coorsystem.h
字号:
// CoorSymtem.h: interface for the CCoorSymtem class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COORSYMTEM_H__DA2AA786_E407_4F3B_805D_568BC46BEAE3__INCLUDED_)
#define AFX_COORSYMTEM_H__DA2AA786_E407_4F3B_805D_568BC46BEAE3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//坐标系
#include "dcl_graph.h"
#include "Scn.h"
class DECL_GRAPH CCoorSystem
{
public:
CCoorSystem();
virtual ~CCoorSystem();
public:
//设置一个坐标系的矩形区域范围
void SetRect(CRect rc);
CRect GetRect();
virtual void Draw(CDC *pDC,CScn *pScn);
protected:
CRect m_rect;
};
#endif // !defined(AFX_COORSYMTEM_H__DA2AA786_E407_4F3B_805D_568BC46BEAE3__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -