/* Jeremy Owen Turner# 200024742. Assignment A1-15 - Using if and else, make the mouse perform different actions when in different parts of the window. */ void setup() { background(252,101,0); size(200,200); } void draw() { if (mouseX>55) { ellipse(45,75,mouseX/4,8); fill(247,98,89);} else { line(88,mouseY,13,66); } }