xxxxxxxxxx
14
let numLines = 16;
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(220, 20, 120);
for (let l = 0; l <= numLines; l += 1) {
let x = map(l, 0, numLines, 0, width);
line(x, 0, x, height);
}
}