F5GraphicsSample2

by nutsu
♥0 | Line 18 | Modified 2009-09-22 20:37:43 | MIT License
play

ActionScript3 source code

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

package {
    
    import flash.display.Sprite;
    import frocessing.core.F5Graphics2D;
    
    [SWF(width=465,height=465,backgroundColor=0)]
    public class F5GraphicsSample2 extends Sprite {
        
        public function F5GraphicsSample2() {
            var fg:F5Graphics2D = new F5Graphics2D( graphics );
            fg.stroke( 0xff2020 ); //線の色
            for ( var i:int = 0 ; i < 300; i++ ) {
                var cx:Number = Math.random()*465;
                var cy:Number = Math.random()*465;
                var cr:Number = Math.random()*20;
                fg.strokeWeight( Math.random()*4 ); //線の太さ
                graphics.drawCircle( cx, cy, cr );
            }
        }
    }
}

Forked