Gloria Serra Coch
Data Mining the City
1 min readNov 2, 2017

--

Bloodbath

def setup():
size(500,500)
print random(50,100)
background(255)
def draw():

x = random(0,width)
y = random(0,height)
a= random(0,255)
b= random(0)
c= random(0)
d= random(5,50)

noStroke()
fill(a,b,c)
ellipse(x,y,d,d)

--

--