xxxxxxxxxx
19
//circle fills red if hovered over right
function setup() {
createCanvas(600, 400);
}
function draw() {
background(0);
stroke(255);
strokeWeight(4);
noFill();
if(mouseX>width/2){
fill(255,0,0);
}
ellipse(300, 200, 100, 100);
}