digiphysical works » 2009 » January

“Aqua” visuals

Filed under: coding, visuals — tjerk January 18, 2009 @ 7:26 pm

“Aqua Geo”
picture-11.png

“Aqua Geo two”

picture-13.png

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