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: F5GraphicsSample3

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

// forked from nutsu's F5GraphicsSample2
package {
    
    import flash.display.Sprite;
    import frocessing.core.F5Graphics2D;
    
    [SWF(width=465,height=465,backgroundColor=0)]
    public class F5GraphicsSample3 extends Sprite {
        
        public function F5GraphicsSample3() {
            var fg:F5Graphics2D = new F5Graphics2D( graphics );
            fg.colorMode( "hsv", 465, 1, 465 ); //HSVモード
            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 ); //線の太さ
                fg.stroke( cx, 1, cy );   
                fg.noFill();          //線の色
                fg.triangle( cy,cy,cy,cx,cr,cr );
            }
        }
    }
}