xxxxxxxxxx
29
let CircleRandom = 0
function setup() {
createCanvas(600, 600);
ellipseMode(CORNER);
noLoop();
}
function draw() {
background(128);
for (let x = 0; x < 30; x++) {
if (x % 2 == 0) {
fill(255);
rect(x * 50, height / 2, 50, 50);
print("Square");
} else {
fill(random(255), random(255), random(255))
ellipse(x * 50, height / 2, 50, 50);
print("Circle");
}
}
for (let y = 0; y < 12; y++)
if (y % 2 == 0) {
fill(255);
rect(width / 2, y * 50, 50, 50);
} else {
fill(random(255), random(255), random(255))
ellipse(width / 2, y * 50, 50, 50);
}
}