/* 15-100 D Homework #1 by Dae Hong KIm daek@andrew.cmu.edu */ size(300, 200); smooth(); background(0); println("Homework #1"); println("Printing the initials : DHK:"); //initial D noStroke(); fill(random(255), random(255), random(255)); arc(30, 100, 125, 80, PI*3/2, PI/2); fill(0); arc(39, 100, 83, 60, PI*3/2, PI/2); //initial H stroke(random(255), random(255), random(255)); strokeWeight(10); line(120, 65, 120, 135); line(120, 100, 170, 100); line(170, 65, 170, 135); //initial K stroke(random(255), random(255), random(255)); line(210, 65, 210, 135); line(210, 120, 260, 75); line(220, 110, 260, 135);