/* uw_logo.pde Created by Justin Hsia UW logo made out of rectangles in school colors. */ size(400,220); // drawing canvas of 400x220 background(255); // white background // The letter 'U' in purple fill( 75, 47, 131); // purple fill rect( 20, 20, 40, 180); // left side of U rect( 65, 140, 40, 60); // middle base of U rect(110, 20, 40, 180); // right side of U // The letter 'W' in gold fill(183, 165, 122); // gold fill rect(160, 20, 40, 180); // left segment of W rect(205, 140, 40, 60); // left base of W rect(250, 100, 40, 90); // middle segment of W rect(295, 140, 40, 60); // right base of W rect(340, 20, 40, 180); // right segment of W