教材:円を描こう!

by ProjectNya
♥0 | Line 20 | Modified 2010-05-28 20:56:29 | MIT License
play

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/nbO0
 */

package {
	import flash.display.Sprite;
	import flash.display.Shape;

	public class Main extends Sprite {
		private var shape:Shape;
		private static var color:uint = 0x000000;

		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.drawCircle(0, 0, 120);
			shape.graphics.endFill();
		}

	}
}