xxxxxxxxxx
19
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
stroke(255);
strokeWeight(4);
noFill();
if (mouseX > 150 && mouseX < 250) {
if(mouseY > 150 && mouseY < 250){
fill(0, 255, 0);
}
}
circle(200, 200, 100);
}