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