the_data = {
let points=[]
mutable f+= 0.02
for (let w=0;w<width+100;w+=25){
for (let h=0;h<height+100;h+=25){
let distance = dist(width/Math.PI*Math.acos(Math.cos(f+9)), height/Math.PI*Math.acos(Math.cos(f*2)),w,h)/25
let size = Math.abs(-10*(1+Math.sin(f))+Math.min(20,distance))
points.push({x:w,y:h,s:size})
}
}
return points
}