// Simpson family example code void setup() { size(900,600); noStroke(); background(255,245,220); } void draw() { // Homer fill(250,193,35); // yellow skin rect(310,275,40,45); // Homer head fill(245,245,245); // off-white rect(310,320,40,50); // Homer shirt fill(89,79,217); // blue jeans rect(310,370,40,45); // Homer pants // Marge fill(250,193,35); // yellow skin rect(370,285,40,35); // Marge head fill(41,82,240); // blue rect(370,190,40,95); // Marge hair fill(177,210,75); // green rect(370,320,40,95); // Marge dress // Bart fill(250,193,35); // yellow skin rect(430,325,40,30); // Bart head fill(240,71,41); // red-ish rect(430,355,40,30); // Bart shirt fill(89,79,217); // blue jeans rect(430,385,40,30); // Bart pants // Lisa fill(250,193,35); // yellow skin rect(490,330,40,30); // Lisa head fill(229,77,35); // orange-ish rect(490,360,40,55); // Lisa dress // Maggie fill(250,193,35); // yellow skin rect(550,350,40,25); // Maggie head fill(147,189,255); // light blue rect(550,375,40,40); // Maggie PJs fill(255,0,0); // red ellipse(550+40/2,370,10,10); // Maggie pacifier }