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

📄 rect.h

📁 《BATTLE OF SKY》
💻 H
字号:
//**************************************************************************
//
// Copyright (c) 1997.
//      Richard D. Irwin, Inc.
//
// This software may not be distributed further without permission from
// Richard D. Irwin, Inc.
//
// This software is distributed WITHOUT ANY WARRANTY. No claims are made
// as to its functionality or purpose.
//
// Authors: James P. Cohoon and Jack W. Davidson
// Date: 7/15/96
// $Revision: 1.4 $
// $Name: $
//
//**************************************************************************
// Class RectangleShape interface


#ifndef RECTSHAPE_H
#define RECTSHAPE_H
#include "shape.h"
class RectangleShape : public Shape {
	public:
		RectangleShape(SimpleWindow &Window,
		 const Position &Center, const color &c = Red,
		 float Length = 1.0f, float Width = 2.0f);
		RectangleShape(SimpleWindow &w,
		 float XCoord, float YCoord,
		 const color &c = Red, float Length = 1.0f,
		 float Width = 2.0f);
		float GetWidth() const;
		float GetHeight() const;
		void GetSize(float &Width, float &Height) const;
		void Draw();
		void SetSize(float Width, float Height);
		void Erase();
	private:
		float Width;
		float Height;
};

#endif

⌨️ 快捷键说明

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