sketch = function( p ) {
let res = 10;
let count = 20000;
p.setup = () => {
p.createCanvas(p.windowWidth, 800);
p.stroke(255);
p.noFill();
p.background(0);
p.noLoop();
}
p.draw = () => {
for(let i = 0; i < count; i++) {
let x = Math.random() * p.width,
y = Math.random() * p.height;
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();
}
}