Gabriela Correa: 10000 líneas + cursor 2012

De Casiopea


TítuloGabriela Correa: 10000 líneas + cursor 2012
Tipo de ProyectoProyecto de Taller
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)Gabriela Correa
ProfesorHerbert Spencer

void setup() {

 size(700, 700);
 background(60, 4, 57);

}

int value = 1;

void draw() {

 int i; for (i = 0; i <= 20000; i= i+2)
 line(noise(0, 700), i, 700, height/2);
 stroke(random(value), random(value), random(value));

}

void mouseMoved() {

 value = value + 1;
 if (value > 255) {
   value = 1;
 }

}