Natalia Garcia 1000 lineas mouse

De Casiopea



Título1000 lineas mouse
AsignaturaImagen Escrita 2017
Del CursoImagen Escrita 2017
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.
2
Alumno(s)Natalia Garcia

<processingjs> void setup() {

 size(500, 500);

 stroke(100);
 strokeWeight(1);
 

}

void draw() {

  background(#8BC18D);
 for(int y = 10; y <= height-10; y*= 1.1){
     for(int x = 10; x <= width-10; x+= 10){
       line(mouseX,mouseY, x,y+2);
      
     }}}

</processingjs>