sketch = function( p ) {
let res = 10;
p.setup = () => {
p.createCanvas(p.windowWidth, 800);
p.stroke(255);
p.noFill();
p.background(0);
p.noLoop();
}
p.draw = () => {
for(var x = 0; x < p.width; x += res) {
for(var y = 0; y < p.height; y += res) {
let value = getValue(x, y);
render(value, x, y);
}
}
}
const getValue = (x, y) => {
return (x + y) * 0.01 * Math.PI * 2;
}
const render = (value, x, y) => {
p.push();
p.translate(x,y);
p.rotate(value);
p.beginShape();
p.vertex(0,0);
p.vertex(res, 0);
p.endShape(p.CLOSE);
p.pop();
}
}