xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(255);
}
function draw() {
background(255);
//Third scoop
fill(139, 69, 19);
ellipse(200, 200, 100, 100);
//Second scoop
fill(255, 255, 102);
ellipse(200, 160, 100, 100);
//First scoop
fill(255, 192, 203);
ellipse(200, 120, 100, 100);
//Cone
fill(210, 180, 140);
triangle(200, 325, 150, 225, 250, 225);
}