forked from: 円を縦横に並べる
forked from 円を縦横に並べる (diff: 12)
円を縦横に並べる 円を敷き詰める @author shmdmoto
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);
}
}
}
}
}
