GitLab now enforces expiry dates on tokens that originally had no set expiration date. Those tokens were given an expiration date of one year later. Please review your personal access tokens, project access tokens, and group access tokens to ensure you are aware of upcoming expirations. Administrators of GitLab can find more information on how to identify and mitigate interruption in our documentation.
//this sketch provides two different variations on a strobe created by aligning two different spheres to rapidly change size at different rates. besides creating a unique strobe effect these two sketches also give off the sensation of being pulled into the screen.
vardifference;
functionsetup(){
createCanvas(720,720);
}
functiondraw(){
//creating blur
pixelDensity(0.1);
background(random(0,255),0,255);
difference=frameCount%20;
stroke(255,0,0);
fill(255);
//first strobe uses two spheres one red and one that changes color over time to create the strobe effect while utilizing randomness to give the movements more dynamism.
////this second strobe also uses two spheres but they both shrink in size in sync, this creates an effect as if the viewer were moving away from what is happening on screen.