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: 円を縦横に並べる

円を敷き詰める
@author shmdmoto
Get Adobe Flash player
by manami 29 Mar 2011
    Embed
/**
 * Copyright manami ( http://wonderfl.net/user/manami )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/2R7V
 */

// forked from shmdmoto's 円を縦横に並べる
package 
{
    import frocessing.display.F5MovieClip2D;
    /**
     * 円を敷き詰める
     * @author shmdmoto
     */
    public class GraphicExample extends F5MovieClip2D
    {
        public function setup() : void
        {
            var i:int, j:int;
            ellipseMode(CORNER);
            for( i = 0 ; i <= 8 ; i++ ) {
                for( j = 0; j <= 8+j ; j-- ) {
                    ellipse(50 * j, 50 * i, 50, 50);
                }
            }
        }
    }
}