xxxxxxxxxx
16
function setup(){
createCanvas(windowWidth, windowHeight);
background(31);
}
function draw(){
noStroke();
fill(63, 127, 255, 100);
circle(mouseX, mouseY, 10);
fill(255, 127, 63, 100);
circle(width - mouseX, mouseY, 10);
fill(127, 63, 255, 100);
circle(mouseX, height - mouseY, 10);
fill(255, 63, 127, 100);
circle(width - mouseX, height - mouseY, 10);
}