xxxxxxxxxx
46
function setup() {
createCanvas(400, 400);
}
function draw() {
background(50);
fill(20,100,25,);
stroke(255,0,0);
ellipse(200,100,100,100);
line(200,150, 200,250);
fill(255, 153, 51);
stroke(255,200,150);
arc(200,50,70,70,3.14,6.14);
fill(51, 51, 0);
ellipse(170,90,10,20)
ellipse(220,90,10,20)
line(170,120,220,120)
fill(102, 51,0 )
arc(200,130,70,70,0,3.14)
line(200,250,150,450)
line(200,230,130,450)
line(200,210,110,450)
line(200,270,170,450)
line(200,290,190,450)
line(200,310,210,450)
line(200,330,230,450)
line(210,350,250,450)
}