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 was used to program varying radial moires. Though I cannot figure out the parameters I used for the take in the edit, I provide the program for how these effects were created. Over the course of the projects production I would experiment and record many different versions of these radial moires and picked the best ones for the final edit of th project.
//combining each layer of ellipses and adjusting their parameters many moire effects can be created.
functionsetup(){
createCanvas(720,720);
angleMode(DEGREES);
}
functiondraw(){
pixelDensity(1);
background(255);
noFill();
push();
////-----------moire that uses a modulo to change it's iterations, thus it has a 'snapping back' quality to it's movement
// strokeWeight(2);
// stroke(255,0,0);
// for(i=0;i<1000;i+=3+(frameCount/100)%20){
// ellipse(360,360,1000-i,1000-i);
// }
////-----------moire which it's iterations are modulated by a sin wave giving it a constant and smooth pulse
// for(i=0;i<1000;i+=6+sin(frameCount/4)*2){
// ellipse(360,360,1000-i,1000-i);
// }
// push();
//---------creates a frame of moires to contrast with whatever is happening in the center of the screen