Tarea 12

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.
Daniela Gallardo_tarea12


TítuloDaniela Gallardo_tarea12
Tipo de ProyectoProyecto de Curso
Palabras ClaveProyecto Final
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)Daniela Gallardo
ProfesorHerbert Spencer

este avance fue trabajado en base al avance de Paulina Martinez

int count; void setup(){ size(600,600); smooth(); background(#A5CE08); frameRate(600); }

void draw(){ count= round(random(35,35)); count++; for(int x=19;x<800;x=x+35){ for(int y=19;y<800; y=y+40){

if(count>10){

stroke(#CE0215); rect(x,y,15,15); fill(#CE0315); stroke(#CE0220); rect(x,y,33,33); fill(#CE0432);

} if(count>50){ background(#EDF23C); }

if(mouseButton==LEFT){ if(mousePressed){ count=1000; count++; smooth(); }} } } }