forked from: キャンバスの左半分にランダムに円を配置

by manami forked from キャンバスの左半分にランダムに円を配置 (diff: 8)
円をキャンバスの左半分にランダムに配置する
@author shmdmoto
♥0 | Line 18 | Modified 2011-03-30 18:33:50 | MIT License
play

ActionScript3 source code

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

// forked from shmdmoto's キャンバスの左半分にランダムに円を配置
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 円をキャンバスの左半分にランダムに配置する
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            var i:int;
            var x:Number;
            var y:Number;
            for (x=0; x<=465; x++){
                for (y=465; y<=0; y--){
                 
                    ellipse (x, y, 20,20)
                }

            }

        }
    }
}