xxxxxxxxxx
28
const pointsH = 20
const pointsV = 20
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
noLoop()
const h = width / pointsH
const y = width / pointsV
translate(10, 10)
for (let x = 0; x < width; x += h) {
for(let y = 0; y < height; y += h) {
console.log(x)
rect(x, y, 10)
stroke(255)
line(x, y, width/2, height/2)
}
}
}