Paulina Martínez IE2012 Tarea 12

De Casiopea
Paulina Martínez IE2012 Tarea 12


TítuloPaulina Martínez IE2012 Tarea 12
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 12
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)Paulina Martínez
ProfesorHerbert Spencer

Teselación de un plano a través de la repetición de una figura a partir de otras simples y la simetría en un eje diagonal .


int count; void setup(){ size(520,520); smooth(); background(#A5CE04); frameRate(500); }

void draw(){ count= round(random(10,10)); count++; for(int x=19;x<550;x=x+40){ for(int y=19;y<500; y=y+40){

if(count>10){

 stroke(#CE0415);
 rect(x,y,22,22);
 fill(#CE0415);
 stroke(#CE0415);

ellipse(x,y,33,33); fill(#CE0415);

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

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