xxxxxxxxxx
27
let a, b, c;
function setup() {
createCanvas(400, 400);
//放这里也很有趣background(220);
}
function draw() {
background(220);
for (x = 0; x <= mouseX; x = x + 50) {
for (y = 0; y <= mouseY; y = y + 50) {
a = random(255);
b = random(255);
c = random(255);
fill(a, b, c);
ellipse(x, y, 20);
}
}
}