Miguel Angel Adofacci: Tarea 02 Imagen Escrita
De Casiopea
Título | Miguel Angel Adofacci: Tarea 02 Imagen Escrita |
---|---|
Palabras Clave | tarea 2 |
Período | 2013- |
Asignatura | Imagen Escrita 2013 - DIS, |
Del Curso | Imagen Escrita 2013 - ARQ |
Carreras | 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) | Miguel Angel Adofacci |
Profesor | Herbert Spencer |
void setup() { size(500, 500); background(255); noStroke(); fill(100,100,100,50); //Define color y transparencia de los elipses for (float x=5; x<500; x=x+5) { for (float y=5; y<500; y=y+5) { ellipse (x, y, x/16, y/16); /*define posición y tamaño de los elipses a mayor x,y; el tamaño será mayor, juntándose e intercalándose */ } } }