xxxxxxxxxx
19
function setup() {
console.log('hi, this is for debugging')
createCanvas(600, 600);
}
function draw() {
background('orange');
ellipse(280, 350, 250, 200);
ellipse(280, 550, 450, 200);
fill('brown'); // Black color for eyes and mouth
triangle(340, 280, 350, 275, 355, 290);
// Draw a Bézier curve
bezier(50, 300, 150, 100, 400, 100, 500, 300);
fill('beige')// Umbrella
// Draw a smooth curve through the points
}