//Hoan Bridge Sketch
size(600,600);
background(172,207,247); //blue
textSize(60); //font size
textAlign(CENTER);
fill(0); //black
text("HOAN",width/2,400);
fill(126); //grey
text("BRG",width/2,450);
fill(255); //white
text("MKE",width/2,500);
fill(255,218,8); //yellow
stroke(255,218,8); //stroke color = yellow
ellipse(500,100,100,100); //"sun"
stroke(0);
strokeWeight(3); //thickness
fill(172,207,247); //blue; same as background
arc(300,300,300,200,-PI,0);
stroke(0); //black
line(0,250,width,250); //bridge base
line(130,300,0,250);
line(150,300,130,300);
line(470,300,600,250);
line(450,300,470,300);

No comments:
Post a Comment