xxxxxxxxxx
20
var x,y;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255,255,255);
stroke(50);
noFill();
if(100 < mouseX && mouseX < 200){
if (100 < mouseY && mouseY < 200){
fill(255,0,210);
ellipse(200, 200, 50, 50);
}
}
}