//// Project 2 - Peter Stork float horizon; int score=0; void setup () { size (800,800); horizon= height/4; } void draw () { background (#85b1ea); fill (#7cd83b); rectMode (CORNERS); rect ( 0 , horizon, width, height) ; } { stroke (0); fill (255,0,0); rect (400,400,100,200); ellipse (350,350,50,50); }