Set of Minimal FREE Moving Backgrounds Generated With PROCESSING Art
Abstract doodles, colourful squares, circles, colourful mosaics.
100% FREE; not for resale.
https://bit.ly/2BRdwz8
#artdesignhobby #processing
////////////////////// Code for first animation:
float bezier_x = 0;
void setup() {
size(1280,720);
background(255);
frameRate(random(10));
}
void draw() {
background(255);
stroke(0);
strokeWeight(random(100));
float distance_top =bezier_x;
fill(random(bezier_x), random(250), random(250),150);
bezier(bezier_x, 0, distance_top,1280, 0, random(bezier_x),random(1280),550);
fill(random(250), random(250), random(250),bezier_x);
bezier(random(1200),bezier_x, random(1200), 0, 1280, distance_top,random(1280),550);
fill(bezier_x, random(250), random(250),150);
bezier(random(1200),distance_top, bezier_x, 0, 1280, distance_top,random(1280),500);
bezier(550, random(bezier_x),distance_top, 1280,0, random(1200), distance_top,random(1200));
bezier_x = bezier_x + 10;
}