Barbara Madariaga : ciclo for

De Casiopea


Títulociclo for
Palabras ClaveTarea 2 ; Barbara madariaga
AsignaturaImagen Escrita,
Del CursoImagen Escrita 2013 - DIS,
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)Barbara Madariaga
ProfesorHerbert Spencer


Barbaramadadiaga-tarea1.jpg




size(500, 500);
background(255);


for (int x = 100; x < 440; x = x+40) {
  for (int y = 80; y < 470; y = y+5) {
    line(70, x, 400, y);
    stroke(y/8);
    strokeWeight(10);
  }
}

saveFrame("barbaramadadiaga-tarea1.jpg");