background(255)
strokeWeight(3)
stroke(128)
for i in range(0, 200):
x1 = random(0, width())
y1 = random(0, height())
x2 = random(0, width())
y2 = random(0, height())
line(x1, y1, x2, y2)
background(255)
strokeWeight(3)
stroke(128)
x1 = random(0, width())
y1 = random(0, height())
for i in range(0, 80):
x2 = random(0, width())
y2 = random(0, height())
line(x1, y1, x2, y2)
x1 = x2
y1 = y2
background(255)
strokeWeight(3)
stroke(128)
x1 = random(0, width())
y1 = random(0, height())
def draw():
global x1, y1
x2 = random(0, width())
y2 = random(0, height())
line(x1, y1, x2, y2)
x1 = x2
y1 = y2
timer(draw)