xxxxxxxxxx
18
function setup() {
createCanvas(970, 870)
noFill()
}
function draw() {
const abv = 0.07
const ibu = 50
const srm = 5
for (let i = 0; i < srm; i++) {
strokeWeight(random(ibu))
stroke(random(255), random(255), random(255))
line(random(width), random(height), random(width), random(height));
curve(random(width/abv), random(width*abv), random(height), random(height), random(width), random(height), random(width*abv), random(height/abv));
}
noLoop()
}