// Navigate ball through maze. void setup() { size (600, 600); background (0); } // First obstacle void draw () { fill (255, 255, 0); rect (0,0, 100,300); // Second obstacle fill (120, 125, 255); rect ( 200,250, 100,350); }