xyplot.h

来自「图形绘制算法实现、区域填充算法的实现过程、图形裁减算法的实现等」· C头文件 代码 · 共 25 行

H
25
字号
// XYPlot.h: interface for the CXYPlot class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_XYPLOT_H__EFCAB5FD_5562_4B4C_9991_3858855F9B1A__INCLUDED_)
#define AFX_XYPLOT_H__EFCAB5FD_5562_4B4C_9991_3858855F9B1A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CXYPlot  
{
public:
	void SetCoordinationRC(CRect& rect);
	void DrawCoordination(CDC* pDC);
	
	CXYPlot();
	virtual ~CXYPlot();
private:
	CRect m_CoordinateRc;
};

#endif // !defined(AFX_XYPLOT_H__EFCAB5FD_5562_4B4C_9991_3858855F9B1A__INCLUDED_)

⌨️ 快捷键说明

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