ellipse.h

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

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

#if !defined(AFX_ELLIPSE_H__52BE9256_7AB7_48AB_8CB2_6EAB44AEF048__INCLUDED_)
#define AFX_ELLIPSE_H__52BE9256_7AB7_48AB_8CB2_6EAB44AEF048__INCLUDED_

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

#include "Element.h"

class Ellipse : public Element  
{
public:
	void draw(CDC *pDC);
	void PlotPoints(CDC *pDC, CPoint ptCenter, CPoint pt,COLORREF color);
	void ellispeMidpoint(CDC *pDC, CPoint ptCenter, int nRx, int nRy, COLORREF color);
	Ellipse();
	virtual ~Ellipse();

};

#endif // !defined(AFX_ELLIPSE_H__52BE9256_7AB7_48AB_8CB2_6EAB44AEF048__INCLUDED_)

⌨️ 快捷键说明

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