xxxxxxxxxx
40
function setup() {
createCanvas(600, 400);
noLoop();
}
function draw() {
background(220);
let n = 10;
let w = width / n;
for (let y = 0; y < height; y += w) {
for (let x = 0; x < width; x += w) {
dijagonala(x, y, w);
grid(x, y, w);
}
}
}
function grid(x, y, w) {
stroke(0, 100, 255);
strokeWeight(1);
// JEDNA OPCIJA
// noFill();
// square(x, y, w);
// DRUGA OPCIJA
line(x, y, x + w, y);
line(x, y, x, y + w);
}
function dijagonala(x, y, w) {
strokeWeight(3);
stroke(0);
if (random() > 0.5) {
line(x, y, x + w, y + w);
} else {
line(x + w, y, x, y + w);
}
}