function draw(){
const {
background,
stroke,
point,
} = p8g;
const {sin, PI} = Math;
background(0);
for(let y=1;y<=(w-1);y++) {
for(let x=1;x<=(w-1);x++){
stroke(255*noise(y,0),alpha);
point(99*noise((x-y)/99+window.r,window.r)*sin((x+y)/99)+y,x);
}
}
window.r-=PI/99;
}