Paula Nicole Castillo: 1er Proyecto - 1000 Lineas 2012

De Casiopea
1000 Lineas, Paula Castillo 2012


Título1000 Lineas, Paula Castillo 2012
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 1
Período2012-
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen Escrita 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)Paula Nicole Castillo
ProfesorHerbert Spencer

En base a for se crean 1000 lineas

 size (700,700);
 background (255);

 for(int i=200; i<5200 ; i= i+5){ //defino la funcion

  line(100, i, i, 600);
  line(600, i, i, 100);
  line(200, i, 100, 200);
  line(200, 100, i, 200);
  
}