function draw(p8g){
const { background, ellipse, fill, noSmooth, noStroke, stroke, strokeWeight, rectMode, CENTER, CORNER, point} = p8g;
const {sin, cos, tan, abs, random} = Math;
if( window.setup == true){
window.setup = false
window.tick = 0
}
noSmooth()
background(0,0,70,5)
for (let iteration = 2e4; iteration--;) {
let angle = tan(tan(iteration + sin(window.tick / 1e9)) * iteration)
let z = sin(iteration) / 40
let x = v + sin(angle ) / z
let y = v + cos(angle ) / z
let scaled = 0.35
let circleSize = (angle % 85 / 8 + 1) * scaled;
strokeWeight(scaled)
ellipse(x, y, circleSize, circleSize );
}
window.tick += 0.05
}