xxxxxxxxxx
39
function setup() {
createCanvas(500, 500);
}
function draw() {
background(0);
for (var y = 0; y < height; y += 20) {
for (var x = 0; x < width; x += 20) {
if (random(1) > 0.5) {
x = random(width);
y = random(height);
diam = random(20, 100);
fill(random(255), random(255), random(255));
stroke(255);
ellipse(x, y + diam/2, diam);
ellipse(x, y - diam/2, diam);
ellipse(x + diam/2, y, diam);
ellipse(x - diam/2, y, diam);
fill(random(255), random(255), random(255));
stroke(255);
ellipse(x, y, diam);
// ellipse(x, y+5, 20);
} else {
// fill(255);
// ellipse(x+20, y+20, 20);
}
}
}
noLoop();
}