xxxxxxxxxx
24
function setup() {
createCanvas(300, 500);
}
function draw() {
background(0,0,0);
push();
fill("maroon")
rect(50, 250, 200, 250)
fill("white");
triangle(150, 350, 50, 150, 250, 150)
noStroke()
fill("maroon")
triangle(150, 280, 0, 0, 300, 0)
fill("#ffffff")
textSize(32);
text("Elaine", 110, 400 + 5);
text("Chen", 115, 400 + 40);
textSize(16);
text("Echen03@mica.edu", 80, 400 + 80);
}