Ilanit Hirnheimer: Imagen Escrita - Tarea 1.3
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 1.3: 10000 Líneas |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 1 |
Período | 2012-2012 |
Del Curso | Imagen Escrita 2012, 1º Diseño 2012, |
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) | Ilanit Hirnheimer |
Profesor | Herbert Spencer |
//Consiste en dibujar 10000 lineas pe manera que todas partan desde un mismo punto, con el comando for
size (700,700);
background (#FF1499);
for (int i =0; i < 5000 ; i = i+5) { stroke (#FF69B4); line(350, 350, i+300, 0); stroke (#FFB6C1); line(0, 400-i, 350, 350); stroke (#FF69B4); line(350, 350, 0, i+300); stroke (#FFB6C1); line(350, 350, 700, i+200);
}