Tomas andres ortega araya, (ciclo for)

De Casiopea


Títulociclo for point
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 2
Período2013-
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)Tomás Andres Ortega Araya
ProfesorHerbert Spencer

void setup() {
  size(600, 600);
}
void draw() {
  background(255);
  for (int x = 60; x < 600; x+=10) {
    for (int y = 30; y < 600 ;y+=5) {

      line(20, x, 600, y);
      stroke(y/2, x/2);
      strokeWeight(4);
    }
  }
}