graphic print

Whigham Rachel Covington
Data Mining the City
1 min readNov 20, 2017
def setup():
size(600,600)
background(255)

global photo
photo = loadImage("graphicprint.png")


def draw():
x = random(0,width)
y = random(0,height)
z = random(100,300)

noStroke()
image(photo,x,y,z,z)

--

--