rectangle.as
来自「精通Actionscript 3.0 书籍源代码 非常实用」· AS 代码 · 共 23 行
AS
23 行
package org.moock.drawing {
// Represents a rectangle that can be drawn to the screen
public class Rectangle extends Polygon {
// The width and height of the rectangle
protected var w:Number;
protected var h:Number;
// Constructor
public function Rectangle (width:Number = 100, height:Number = 100) {
super();
setSize(width, height);
}
// Sets the width and height of the rectangle
public function setSize (newWidth:Number, newHeight:Number):void {
w = newWidth;
h = newHeight;
// Translate the width and height into points on the polygon
setPoints([0,w,w,0],[0,0,h,h]);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?