Ilanit Hirnheimer: Imagen Escrita - Tarea 1.3

De Casiopea
Ilanit Hirnheimer: Imagen Escrita: Tarea 1.3: 10000 Líneas


TítuloIlanit Hirnheimer: Imagen Escrita: Tarea 1.3: 10000 Líneas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 1
Período2012-2012
Del CursoImagen Escrita 2012, 1º Diseño 2012,
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)Ilanit Hirnheimer
ProfesorHerbert 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);
  

 

}