xxxxxxxxxx
17
let xn = 10;
let yn = 10;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(20);
for (x = width/xn; x <= width; x += width / xn) {
for (y = height/yn; y <= height; y += height / yn) {
stroke(255);
line(x, 0, x, height);
line(0, y, width, y);
}
}
}