flash on 2010-6-29

by ir_77
♥0 | Line 9 | Modified 2010-06-29 12:51:23 | MIT License
play

ActionScript3 source code

/**
 * Copyright ir_77 ( http://wonderfl.net/user/ir_77 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/fiNR
 */

package {
    import flash.display.Sprite;
    public class DrawCircle extends Sprite{
        public function DrawCircle(){
            graphics.lineStyle(10,0xffd700,1)
            graphics.drawEllipse(200,200,1000,100)
        }
    }
}