lellipse.h

来自「希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!」· C头文件 代码 · 共 20 行

H
20
字号
//
// Labeled Ellipse
//

#ifndef LABELEDELLIPSE_H
#define LABELEDELLIPSE_H
#include "label.h"
#include "ellipse.h"

class LabeledEllipseShape : public Label,
 public EllipseShape {
	public:
		LabeledEllipseShape(SimpleWindow &w,
		 const Position &Center, const color c = Red,
		 string Text = "R", float Length = 1,
		 float Height = 2);
		void Draw();
};
#endif

⌨️ 快捷键说明

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