Catalina Angulo: mouse 10000 lineas

De Casiopea
Catalina Angulo: mouse 10000 lineas


TítuloCatalina Angulo: mouse 10000 lineas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 2
AsignaturaImagen Escrita 2012,
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)Catalina Angulo
ProfesorHerbert Spencer

void setup() {

size(700,700); stroke(#1E79A2); background(#000508); smooth(); frameRate(8);

} int contador=0;

void draw() {

 if(contador<=10000){
  line(mouseX,mouseY,random(-1,701), random(-1,701));
   contador++;
 }  

}