xxxxxxxxxx
21
//Adapted by https://www.dwitter.net/d/10765
let t=0;
function setup() {
createCanvas(800,600)
noStroke();fill(0)
pixelDensity(1/7) //important
}
function draw() {
background(255);
scale(7)
for(i=0;i<100;i++) {
for(j=0;j<70;j++) {
rect(i,j,(sin(j*j+i/j-t*7)+cos(j**5-i/j*6+t)**3)*j/30,1);
}
}
t+=.01;
}