forked from: forked from: 円を縦横に並べる
forked from forked from: 円を縦横に並べる (diff: 3)
円を敷き詰める @author shmdmoto
ActionScript3 source code
/**
* Copyright myg019 ( http://wonderfl.net/user/myg019 )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/bLeU
*/
// forked from myg019's forked from: 円を縦横に並べる
// 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;
for( i = 0 ; i <= 8 ; i++ ) {
for( j = 0 ; j <= 8 ; j++ ) {
rect(50 * j, 50 * i, 45, 45);
}
}
}
}
}