⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 point.h

📁 可以进行柱状图
💻 H
字号:
// Point.h: interface for the CPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_POINT_H__CCE1877E_8AF2_4C54_950A_9DBED127EF0B__INCLUDED_)
#define AFX_POINT_H__CCE1877E_8AF2_4C54_950A_9DBED127EF0B__INCLUDED_

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

#include "Graph.h"

class CPoint : public CGraph  
{
public:
	int y0;
	int x0;
	void SetPoint(int x,int y);
	CPoint();
	virtual ~CPoint();

};

#endif // !defined(AFX_POINT_H__CCE1877E_8AF2_4C54_950A_9DBED127EF0B__INCLUDED_)

⌨️ 快捷键说明

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