forked from: 円を縦横に並べる

by peace96beats forked from 円を縦横に並べる (diff: 12)
円を縦横に並べる

円を敷き詰める
@author shmdmoto
♥0 | Line 16 | Modified 2012-12-17 12:37:23 | MIT License
play

ActionScript3 source code

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

// forked from lenonsun's 円を縦横に並べる
// 円を縦横に並べる
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 円を敷き詰める
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
           
           
           for(var i:Number=0;i <= 8;i++){
           for(var y:Number=0;i <= 8;y++){

               
            ellipseMode(CORNER);   
            ellipse(50*i,50*y,50,50); 
           }
}
                     
           
        }
    }
}