“Aqua” visuals
“Aqua Geo”
“Aqua Geo two”
made in Processing. Code:
import processing.opengl.*;
int a= 0;
int b= 0;
int c= 0;
void setup(){
size(1400,900, P3D);
background(0);
noLoop();
}
void draw(){
for(int i=0;i
a+=1;
b+=10;
c+=1;
fill((255-c),b,a, LIGHTEST);
box(a,b,c);
rotateX(0.01);
rotateZ(0.1);
rotateY(0.1);
}
}
Comments Off
