Paul Guitard: 1000 Lineas, Respuesta Al Mouse

De Casiopea
Proyecto De Imagen Escrita: 1000 Lineas


TítuloProyecto De Imagen Escrita: 1000 Lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
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)Paul Guitard
ProfesorHerbert Spencer


void setup() {

  size(700, 700); 
  smooth();
} 
float r = 2.5; 
void draw() {

  background(255); 
  stroke(0); 
  for (int i=1; i<250; i++) { 
    line(43+(r*i), 43, mouseX, mouseY); 
    line(43, 43+(r*i), mouseX, mouseY); 
    line(667, 43+(r*i), mouseX, mouseY); 
    line(43+(r*i), 667, mouseX, mouseY);
  }
}