xxxxxxxxxx
27
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
strokeWeight(1);
rect(100, 100, 200, 200, 60);
// oci
ellipse(160, 165, 30, 20);
ellipse(160, 165, 10);
ellipse(240, 165, 30, 20);
ellipse(240, 165, 10);
// usta
line(180, 260, 250, 280);
// nos
line(200, 200, 210, 230);
// krk
strokeWeight(74);
line(200, 340, 200, 400);
}