xxxxxxxxxx
24
let m=11;
let i=0
function setup() {
createCanvas(1000, 800);
noLoop();
stroke(0,90);
strokeWeight(0.5);
}
function draw() {
for(let i=0; i<10000; i++){
let x = random(m, width-m);
let y = random(m, height-m);
line(x,y,x+10,y);
push();
translate(x,y);
rotate(random(PI));
line(-10,0,10,0);
pop();
}
}