/// bouncing ball w/in box void setup() float ball; void setup(){ size(500,500); } void draw(){ // scene background(0); rectMode(CORNER); rect (25,25,450,450); fill(225,10,200); } void ball() { }