教材:角丸矩形に着色する (1)
♥0 |
Line 20 |
Modified 2010-05-28 21:14:57 |
MIT License
archived:2017-03-30 01:36:56
ActionScript3 source code
/**
* Copyright ProjectNya ( http://wonderfl.net/user/ProjectNya )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/i8lQ
*/
package {
import flash.display.Sprite;
import flash.display.Shape;
public class Main extends Sprite {
private var shape:Shape;
private static var color:uint = 0x00A8FF;
public function Main() {
init();
}
private function init():void {
shape = new Shape();
addChild(shape);
shape.x = 232;
shape.y = 232;
shape.graphics.beginFill(color);
shape.graphics.drawRoundRect(-120, -90, 240, 180, 40, 40);
shape.graphics.endFill();
}
}
}