Lineas mouse 100-1000-10000
De Casiopea
Título | mouse 100 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 2 |
Del Curso | Imagen Escrita 2012, |
Carreras | 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) | Ariel Carrasco |
void setup(){ size(700,700); background( 0); smooth(); frameRate(100); } void draw() { for(int i=0; i<100;i++)
line(mouseX, mouseY,1,1); line(699,699, mouseX, mouseY); stroke(250,0,0); strokeWeight(3);
println(frameCount); if(frameCount==100) // 100 , 1000, 10000 exit();}