Miguel Angel Adofacci: Tarea 02 Imagen Escrita

De Casiopea
Miguel Angel Adofacci: Tarea 02 Imagen Escrita


TítuloMiguel Angel Adofacci: Tarea 02 Imagen Escrita
Palabras Clavetarea 2
Período2013-
AsignaturaImagen Escrita 2013 - DIS,
Del CursoImagen Escrita 2013 - ARQ
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)Miguel Angel Adofacci
ProfesorHerbert 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
*/
    }
  }
}