xxxxxxxxxx
30
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(45);
textFont("Gotham");
text("Elaine", 95, 400 +0);
text("Chen", 105, 400 + 40);
textSize(16);
textFont("Courier New");
text("echen03@mica.edu", 70, 400 + 80);
function preload() {
font = loadFont('./Raleway.ttf');
}
}