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;
}
No comments:
Post a Comment