martes, 5 de agosto de 2008

Estetica de interfaz

processing
void setup(){
size (300,300);
background(0,2,34);
smooth();
}
void draw() {
fill(225,245,0);
strokeWeight (0);
ellipse(150,130,150,150);
fill(0,0,0);
ellipse(120,115,25,25);
ellipse(180,115,25,25);

strokeWeight (15);
point (150,150);

strokeWeight (10);
fill(255,255,255,255);
rect (140,180,20,10);

strokeWeight (10);
fill(255,255,255,255);
rect (125,215,40,60);

}

No hay comentarios: