forked from: flash on 2010-3-8

by cac forked from flash on 2010-3-8 (diff: 1)
♥0 | Line 9 | Modified 2010-03-08 14:52:00 | MIT License
play

ActionScript3 source code

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

// forked from cac's flash on 2010-3-8
package {
    import flash.display.Sprite;
    public class DrawCircle extends Sprite {
        public function DrawCircle(){
            // write as3 code here..
            graphics.lineStyle(10,0xffd700)
            graphics.drawCircle(200,200,50)
            
        }
    }
}