/* Jeremy Owen Turner# 200024742. Assignment A1-13 - Move a visual element across the screen. When it disappears off the edge, move it back into the frame.*/ //I still cannot figure out how to get the ball to return to the screen... void setup() { size(600,600); background(54,56,157); frameRate(60); } int i = 0; void draw() { background(54,56,157); ellipse(60,i,100,88); fill(255,3,3); smooth(); i++; if(i>height) { i=0; //ok, I now know what to do here...phew! } }