xxxxxxxxxx
34
//Yao Xiao
//Lost & Found
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255, 230, 230);
noStroke();
fill(190);
push();
translate(width/2,310);
ellipse(0,0,80,30);
pop();
quad(160,310,145,140,255,140,240,310)
push();
blendMode(SOFT_LIGHT);
strokeWeight(20);
stroke(230);
strokeCap(PROJECT);
line(215,155,211,315);
pop();
fill(60);
ellipse(width/2,140,110,30);
quad(145,140,144,112,255,129,255,140);
rotate(PI/20);
arc(width/2+16,89,112,30,PI,TWO_PI);
}