Constanza Johnson: Tarea "for"
De Casiopea
Título | Tarea 2 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Período | 2011- |
Del Curso | Imagen Escrita, |
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) | Constanza Johnson |
Profesor | Herbert Spencer |
void setup () { size (500, 500); background (255); smooth(); noLoop(); } void draw () { for( int i = 300; i <width; i += 30) { line( i, 400, 90,90 ); stroke (70, 15, 70); } }