flash on 2010-1-31

by sheep
♥0 | Line 9 | Modified 2010-01-31 11:17:55 | MIT License
play

ActionScript3 source code

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

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