Circles

by shapevent
♥2 | Line 11 | Modified 2011-04-20 01:41:03 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            
            
            graphics.lineStyle(0, 0x000000);
            
            graphics.drawCircle(250, 250, 100);
            graphics.drawCircle(250, 250, 90);
            graphics.drawCircle(250, 250, 80);
        }
        
         
    }
}