xxxxxxxxxx
44
function setup() {
createCanvas(500, 600);
}
function draw() {
background(170,166,240);
//cup
fill(170,130,110)
stroke(255)
strokeWeight(2)
rect(120,150,260,375,0,0,50,50)
//milkfoam
fill(255)
rect(120,150,260,100)
//cap and straw
fill(120,70,40)
ellipse(250,150,260,50)
strokeWeight(10)
line(250,150,300,30)
//bubbles
noStroke()
circle(150,490,30)
circle(180,475,30)
circle(200,500,30)
circle(230,490,30)
circle(260,500,30)
circle(280,480,30)
circle(305,490,30)
circle(340,500,30)
circle(360,480,30)
//smileyface
stroke(255)
fill(255)
line(200,300,220,310)
line(220,310,200,320)
line(280,310,300,300)
line(280,310,300,320)
ellipse(250,350,50,10)
}