xxxxxxxxxx
80
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255,202,2);
fill(255,202)
//circle(390,30,500)
rect(0,260,400,300)
strokeCap(ROUND);
strokeWeight(4)
//ears
fill(192)
triangle(80,60,140,100,90,170)
triangle(320,60,310,160,190,170);
//body
strokeWeight(4)
fill(192)
ellipse(202,350,300,400)
//tasma
fill(51,153,221)
ellipse(200,200,210)
fill(255,202,2)
ellipse(204,320,25)
//face
fill(192)
arc(201,180,220,220,0,PI*2);
//nose
strokeJoin(ROUND);
fill(255,204,229,130)
quad(180,175,220,175,206,197,195,197)
point(230,190)
point(220,190)
point(225,200)
point(175,190)
point(170,200)
point(183,195)
//triangle(180,175,220,175,200,200);
//mouth
line(193,198,170,220)
line(209,198,230,220)
//eyes
fill(204,255,255);
ellipse(173,155,30,50)
ellipse(225,155,30,50)
fill(51,153,221)
ellipse(175,163,10)
ellipse(222,163,10)
//lefTmustache
strokeWeight(2)
line(160,193,52,170)
line(160,199,50,200)
line(160,205,60,230)
//rightMustche
line(240,193,353,170)
line(240,200,358,200)
line(240,206,352,225)
//eyebrows
strokeWeight(4)
line(155,140,180,120)
line(220,120,240,139)
//text
//nose_2
//ellipseMode(CENTER)
//noFill()
//arc(175,200,50,50,270,90);
//arc(230, 201, 60, 50, HALF_PI, PI);
}