xxxxxxxxxx
23
// Inspired by https://twitter.com/mattdesl/status/1179444144521011200/photo/1
function setup() {
createCanvas(400, 400);
noLoop()
strokeWeight(2)
}
function draw() {
background(240);
rotate(100)
translate(-200, 40)
for (let y = 0; y < height * 2; y += 15) {
for (let x = 0; x < width * 2; x += 5) {
const long = random(1, 70)
random(1) > 0.5 ? stroke(0) : stroke(240)
line(x, y, x + long, y)
x += long
}
}
}