xxxxxxxxxx
14
function setup() {
createCanvas(400, 400);
}
function draw() {
background(50);
for(let i=0; i<400; i++){
for(let j=0; j<400; j++){
stroke(mouseX - random(255),mouseY - random(255),random(255))
fill(mouseX - random(255),mouseY - random(255),random(255))
rect(mouseX,mouseY,10,10)
}
}
}