circle.h

来自「这个是计算机图形学的课程设计的全部 内容。」· C头文件 代码 · 共 26 行

H
26
字号
// Circle.h: interface for the CCircle class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CIRCLE_H__936ACEA8_FF2D_44E6_8245_1184D0560BFF__INCLUDED_)
#define AFX_CIRCLE_H__936ACEA8_FF2D_44E6_8245_1184D0560BFF__INCLUDED_

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

#include "Element.h"

class CCircle : public Element  
{
public:
	void draw(CDC *pDC);
	void CirclePlotPoint(CDC *pDC, int ptCenterx, int ptCentery, int ptx, int pty, COLORREF color);
	void CircleMidPoint(CDC *pDC, int ptCenterx, int ptCentery, int r, COLORREF color);
	CCircle();
	virtual ~CCircle();

};

#endif // !defined(AFX_CIRCLE_H__936ACEA8_FF2D_44E6_8245_1184D0560BFF__INCLUDED_)

⌨️ 快捷键说明

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