xxxxxxxxxx
54
function setup() {
// business cards have a 3.5:2 ratio
// horizontal
createCanvas(700, 400);
// vertical
c = createCanvas(400, 700);
}
function preload() {
font1 = loadFont("./Coconat-Regular.otf");
font2 = loadFont("./ApfelGrotezk-Satt.otf");
}
function draw() {
// this background might be easier to use while designing
background(220);
// background(255);
fill("#658354")
noStroke()
triangle(200, 137, 200, 92, 228, 137)
triangle(200, 197, 200, 136, 150, 197)
triangle(200, 220, 200, 182, 280, 220)
fill("#658354")
noStroke()
triangle(200, 300, 50, 370, 350, 370)
fill("#513726")
rectMode(CENTER);
rect(200,402,50,65)
textStyle(BOLD)
textFont(font2)
textSize(26)
text("Wenhui Zhang",119,532 + 25)
textFont(font1)
textSize(12)
text("wzhang01@mica.edu",144,552 + 35)
textFont(font1)
textSize(12)
text("Illustration/Graphic Design",129,552 + 55)
//saveCanvas(c, 'sketch.jpeg')
}