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

ホワイトノイズパターン

1ピクセルの点を,描画領域一杯に敷き詰めます.各点の明るさはランダムに設定されています.
/**
 * Copyright shmdmoto ( http://wonderfl.net/user/shmdmoto )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/dS3m
 */

package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * ランダムな明るさの点を敷き詰める
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            var x: int, y:int;
            noFill();
            for(y=0; y <= 465; y++) {
                for(x=0; x <= 465; x++) {
                    stroke(random(255));
                    point(x, y);
                 }
            }
        }
    }
}