Francisca Romero Imagen Escrita, Tarea 2

De Casiopea
Francisca Romero, Respuesta al Mouse 100 lineas


TítuloFrancisca Romero, Respuesta al Mouse 100 lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
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)Francisca Romero Bugueño
ProfesorHerbert Spencer
 

void setup() {
  size(700, 700);
  smooth();
}

void draw() {
  background(255); 
  for (int i=0; i<500; i= i+5) {

    line(mouseX, i, 700, 0);
    line(0, 700, i, mouseX);
    line(mouseX, 0, 700, i);
    line(i, 700, 0, mouseX);
  }
}