xxxxxxxxxx
25
// const lines = [];
const depth = 10;
function setup() {
createCanvas(500, 500);
strokeWeight(2)
}
function draw() {
background(11, 16, 28);
stroke(255)
let last = createVector(width/2, 0);
// for (let currentHeight = 0; currentHeight < height; ) {
// const newPos = createVector(random(0, width), random(last.y, height))
// const newEnd = last.add(newPos)
// line(last.x, last.y, newEnd.x. newEnd.y)
// last = newEnd;
// currentHeight += last.y;
// }
noLoop()
}