Tarea Processing 12 Antonia Lara

De Casiopea
Tarea 12 Antonia Lara


TítuloTarea 12 Antonia Lara
Palabras Clavetarea 12, imagen escrita 2012
Período2012-2012
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
CarrerasDiseñ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)Antonia Lara
ProfesorHerbert Spencer

int count; void setup(){ size(500,500); background(#9FDB31); smooth(); frameRate(50); }

void draw(){ count= round(random(30,100));


count++; for(int x=10;x<600;x=x+40){ for(int y= 10;y<500; y=y+30){ if(count>20){

rect(x,y,10,10); } if(count>10){ ellipse(x,y,40,30); colorMode (#9FDB31); fill (#6631DB);

} if(count>10){ ellipse(x,y,20,15); colorMode (#9FDB31); stroke(#9FDB31); fill (#31DBD7);

}

}} }