In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

fuck the drawCircle.

Get Adobe Flash player
by alotfuck 24 Nov 2010
/**
 * Copyright alotfuck ( http://wonderfl.net/user/alotfuck )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/djBq
 */

package {
    import flash.display.Sprite;
    import flash.events.Event;
    /**
    * drawCircleの精度は、痛すぎる。
    */
    public class FlashTest extends Sprite {

        private var circle_mc:Sprite;
        
        public function FlashTest() {
           circle_mc=new Sprite();
           addChild(circle_mc);
           circle_mc.graphics.lineStyle(25,0xFF0000);
           circle_mc.graphics.beginFill(0x000000,1);
           circle_mc.graphics.drawCircle(0,0,1000);
           circle_mc.x=stage.stageWidth/2;
           circle_mc.y=1200;
           circle_mc.addEventListener(Event.ENTER_FRAME,function(e:Event):void{circle_mc.rotation+=3});
        }

    }
}