miércoles, 16 de junio de 2010

martes, 8 de junio de 2010

Flash

data="http://3049515872915133473-a-1802744773732722657-s-sites.googlegroups.com/site/uiuiuire/flash1.swf" width="231" height="132">


martes, 1 de junio de 2010

Aquí están algunos screen shots de mi html, es sencillo aún...



miércoles, 26 de mayo de 2010

Triángulos random e interacción

void setup() {
size(400,200);
strokeWeight(1);
smooth();
}
void draw() {
background(204);
noFill();
triangle(mouseX,mouseY,mouseX,60,75,mouseY);
fill(200,120,120);
triangle(mouseX,mouseY,(random(120)),30,10,mouseY);
fill(255);
triangle((random(200)),(random(100)),10,50,28,60);
}

Triangle

void setup() {
size(200,200);
strokeWeight(1);
smooth();
}
void draw() {
background(204);
noFill();
triangle(mouseX,mouseY,mouseX,60,75,mouseY);
}

Ejercicio: Shapes 1: coordinates, primitives: LINE

void setup() {
size (600,400);
background (255);
}
void draw (){
stroke(5);
fill (12);
line (mouseX,mouseY,100,300);
fill (180);
line (mouseX,mouseY,300,100);
fill (120,30,98);
line (mouseX,mouseY,400,30);
}

martes, 25 de mayo de 2010

Silica Esc


Este video me fascinó, se llama Silica Esc, fué realizado por Vladimir Todorovic y está hecho con processing, aqui dejo el link: www.vimeo.com/10154340




Seguidores