Thursday, January 31, 2019

Set of Minimal FREE Moving Backgrounds Generated With PROCESSING Art





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;
}

Sunday, January 20, 2019

Minimal FREE Moving Backgrounds BW Generated With Processing Art





Minimal FREE Moving Backgrounds BW Generated With Processing

Super Nova and Galaxy Twists.
100% FREE; not for resale.

https://bit.ly/2BRdwz8
#artdesignhobby #processing

////////////////////// Code for first animation:
float r = 0;

void setup() {
size(1920,1080);
background(10);
smooth();
noStroke();
}
void draw() {
translate(width/2, height/2);
fill(255,50);
rotate(r);
float circle_size = random(5, 50);
bezier(100 + r, 10, circle_size, circle_size,100,50,40,6);
r = r +3;

}