flash on 2011-1-28
円を敷き詰める
@author shmdmoto
/**
* Copyright swndfl ( http://wonderfl.net/user/swndfl )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/fR6g
*/
package
{
import frocessing.display.F5MovieClip2D;
/**
* 円を敷き詰める
* @author shmdmoto
*/
public class GraphicExample extends F5MovieClip2D
{
public function setup() : void
{
var i:int, j:int;
//ellipseMode(CORNER);
colorMode(HSB, 360,100,100,100);
noFill()
for( i = 0 ; i <= 8 ; i++ ) {
for( j = 0 ; j <= 8 ; j++ ) {
strokeWeight(1);
stroke(random(0,60), random(60,100), random(60,100));
ellipse(50*j, 50*i, 70, 70);
}
}
}
}
}