Pork Face

Gloria Serra Coch
Data Mining the City
1 min readSep 20, 2017
oink oink
#this is the green field
size(600, 600)
background(34,139,34)
#this is the body
how_fat=500
stroke(255, 240, 247)
fill(255, 240, 247)
ellipse(width/2, 570, how_fat, how_fat)
#these are the ears
ears_size=80
stroke(255, 240, 247)
fill(255, 240, 247)
ellipse(180, 160, ears_size, ears_size)
stroke(255, 240, 247)
fill(255, 240, 247)
ellipse(420, 160, ears_size, ears_size)
#this is the face
face_fat=370
stroke(255, 195, 225)
fill(255, 195, 225)
ellipse(width/2, height/2, face_fat, face_fat)
#this is the nose
stroke(255, 240, 247)
fill(255, 240, 247)
ellipse(width/2, 370, 170, 150)
nosrlis_size=50
stroke(255,105,180)
fill(255,105,180)
ellipse(270, 340, nosrlis_size, nosrlis_size)
stroke(255,105,180)
fill(255,105,180)
ellipse(330, 340, nosrlis_size, nosrlis_size)
#these are the eyes
eyes_size=30
stroke(0)
fill(0)
ellipse(240, 250, eyes_size, eyes_size)
stroke(0)
fill(0)
ellipse(360, 250, eyes_size, eyes_size)

--

--