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

forked from: forked from: The wavey

Get Adobe Flash player
by Liviu.Eu 17 Apr 2013
    Embed
/**
 * Copyright Liviu.Eu ( http://wonderfl.net/user/Liviu.Eu )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/kC9f
 */

// forked from yarusene's forked from: The wavey
// forked from yarusene's The wavey
package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            const r:int = 55; //44,55 は接するような図になる
            const a:int =200;
            graphics.lineStyle(2.0,0x0);       
            graphics.drawCircle(0,0,r*1);
            graphics.drawCircle(a,0,r*1);
            graphics.drawCircle(0,a,r*1);
            graphics.drawCircle(a,a,r*1);
            
            graphics.lineStyle(1.0,0x00000);             
            graphics.drawCircle(0,0,r*2);
            graphics.drawCircle(a,0,r*2);
            graphics.drawCircle(0,a,r*2);
            graphics.drawCircle(a,a,r*2);
            
            graphics.lineStyle(5.0,0x0);                
            graphics.drawCircle(0,0,r*3);
            graphics.drawCircle(a,0,r*3);
            graphics.drawCircle(0,a,r*3);
            graphics.drawCircle(a,a,r*3);
            
            graphics.lineStyle(11.0,0x0);   
            graphics.drawCircle(0,0,r*4);
            graphics.drawCircle(a,0,r*4); 
            graphics.drawCircle(0,a,r*4);
            graphics.drawCircle(a,a,r*4); 
            
            graphics.lineStyle(14.0,0xFFFFFF);    
            graphics.drawCircle(0,0,r*5);
            graphics.drawCircle(a,0,r*5);
            graphics.drawCircle(0,a,r*5);
            graphics.drawCircle(a,a,r*5);   
                         
        }
    }
}