Miguel Angel Adofacci - 1000 Líneas

De Casiopea



Título1000 Líneas
AsignaturaImagen Escrita
Del CursoImagen Escrita 2017
CarrerasDiseño, 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.
1
Alumno(s)Miguel Angel Adofacci

<processingjs>

int len = 80; int x = (len/2);


void setup() {

 size(500, 500);
 strokeWeight(0.5);

}


void draw() {

 background(255);
 translate(width/2, height/2);


 for (int i = 0; i<500; i++) {
   line(-(width/3)-x, 0, -(width/3)+x, 0);
   line(-(width/3), -(height/3)-x, 0, (height/3)+x);
   rotate(radians(500/360));
   //rotate(radians(500/(map(mouseX, 0, 500, 0, 3600) ))); para variable
 }

}

</processingjs>