教材:楕円を描こう!

by ProjectNya
♥0 | Line 20 | Modified 2010-05-28 21:07:56 | 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/pkEp
 */

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.drawEllipse(-120, -90, 240, 180);
			shape.graphics.endFill();
		}

	}
}