xxxxxxxxxx
21
function setup() {
createCanvas(400, 600);
}
function draw() {
background(249, 233, 232);
noFill();
beginShape();
stroke(300);
strokeWeight(15);
vertex(200, 20);
bezierVertex(260, 142, 41, 400, 300, 350);
endShape();
beginShape();
ellipse(294, 348, 368, 474, 264, 541, 170, 502, 190, 357);
endShape();
}