Sebastián Gallardo: Doble for Dinámico

De Casiopea



Títulodoble for dinamico
Período2011-
AsignaturaTaller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita,
CarrerasArquitectura, Diseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)Sebastián Gallardo
ProfesorHerbert Spencer
Sgallardo-0001.jpg
void setup(){
  background(190);
  size(500,500);
  noLoop();
  smooth();
  noStroke();
}

void draw(){
  for (int x = 20; x <=480; x+= 10){
    for (int y = 20; y <=480; y+=10){
         fill(random(1,255),random(1,255),random(1,255));
         ellipse(x,y+random(-10,60),random(-1,60),random(-10,100));
           }
       }
    saveFrame("sgallardo-####.jpg"); 
}