xxxxxxxxxx
66
function setup() {
createCanvas(600, 600);background('#fae')
function draw() {
;
}
//this is my self portrait v1
//hair at back
fill(0)
rect(320-115,100,190,250,50)
//head
fill('#5E2C04')
circle(300,200,200)
//eyes
fill(255)
circle(360-115,180,35)
circle(350,180,35)
//pupils
noStroke()
fill(0)
circle(360-115,180,16)
circle(350,180,16)
//glasses
stroke('rgb(204,178,178)')
strokeWeight(2)
fill( 'rgba(185,122,165,0.25)' )
circle(360-115,180,60)
circle(350,180,60)
//nose
noStroke()
fill(202,98,89)
triangle(300,200,289,190,289,200)
//mouth
fill(202,100,91)
arc(295, 250, 80, 60, 0, PI + QUARTER_PI, OPEN)
//bangs
fill(0)
rect(325-110,100,170,70,70)
//tablet
fill('rgb(108,173,182)')
rect(240,270,110,140,20)
//camera
fill('black')
circle(260,290,15)
//camera flash
fill('gray')
circle(259,307,5)
save()
}