// Amy Nichols // Section D // aenichols@cmu.edu println("Homework #1"); println("Printing the initials: AEN"); size(200, 300); PImage b; b = loadImage("CMU.jpg"); background(b); smooth(); noStroke(); fill(#FFFFFF, 75); rect(6, 6, 156, 71); stroke(#040336); fill(#FFEEA7); rect(2, 2, 155, 70); // Letter A fill(#E8383B); noStroke(); arc(27, 34, 22, 45, PI, TWO_PI); fill(#040336); arc(29, 34, 12, 35, PI, TWO_PI); fill(#FFEEA7); arc(27, 34, 12, 35, PI, TWO_PI); fill(#E8383B); quad(16, 34, 38, 34, 48, 60, 6, 60); fill(#040336); quad(19, 40, 37, 40, 43, 60, 13, 60); fill(#FFEEA7); quad(19, 40, 35, 40, 41, 60, 13, 60); // Letter E stroke(#738EC4); line(63, 15, 89, 15); line(63, 56, 89, 56); line(63, 15, 63, 56); line(63, 33, 76, 33); stroke(#E8383B); line(63, 17, 89, 17); line(63, 58, 89, 58); line(61, 15, 61, 56); line(63, 35, 76, 35); fill(#738EC4); stroke(#040336); ellipse(62, 15, 6, 6); ellipse(62, 56, 6, 6); ellipse(90, 15, 6, 6); ellipse(90, 56, 6, 6); ellipse(76, 33, 6, 6); // Letter N noStroke(); fill(#E8383B); rect(108, 12, 42, 48); fill(#040336); triangle(118, 12, 144, 12, 144, 55); fill(#FFEEA7); triangle(118, 12, 142, 12, 142, 55); fill(#040336); triangle(116, 60, 118, 25, 137, 60); fill(#FFEEA7); triangle(116, 60, 116, 25, 135, 60);