Personal encounter with a Bear in Python

Tyrene N Calvesbert
Data Mining the City
1 min readSep 20, 2017
size(500,500)

Python Face code

background(107, 58, 48)
#teeth
fill(255,255,255)
arc(200, 389, 80, 80, 0, PI, OPEN)
arc(369, 400, 80, 80, 0, PI, OPEN)
#bigpartof nose
strokeWeight(1)
fill(255,182,193)
ellipse(300,270,450,300)
#nose
strokeWeight(1)
fill(139,69,19)
rect(175,200,210,150,500)
#eyes
fill(255,255,255)
arc(59, 46, 76, 26, 58, 98)
arc(435, 46, 76, 26, 58, 98)
fill(000)
ellipse(62.5,50,30,30)
ellipse(437.5,50,30,30)
fill(255,182,193)

--

--