xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// draw a happy face
fill(255, 255, 0);
strokeWeight(15);
stroke(0);
circle(200, 200, 200);
line(170, 170, 170, 190);
line(230, 170, 230, 190);
arc(200, 220, 60, 60, 0, PI);
}