Juan Pablo Vergara: Ciclo For
De Casiopea
Título | bidimensional ciclo for |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 2 |
Período | 2013-2013 |
Asignatura | Imagen Escrita 2013 - DIS, |
Del Curso | Imagen Escrita 2013 - DIS, |
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) | Juan Pablo Vergara |
Profesor | Herbert Spencer |
size(500,500); // tarea ciclo for background(255); for (int x = 100 ; x < 400; x = x+8){ for (int y = 20; y < 480; y = y+4) { point(x,y); stroke(y/2); strokeWeight(4); } }