Gabriela Díaz Naranjo ESPIRAL

De Casiopea
La versión para imprimir ya no se admite y puede contener errores de representación. Actualiza los marcadores del navegador y utiliza en su lugar la función de impresión predeterminada del navegador.


TítuloGabriela Díaz Naranjo Espiral
Tipo de ProyectoProyecto de Taller
Palabras ClaveEspiral Gabriela
AsignaturaImagen Escrita 2013 - DIS,
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 Diaz Naranjo
ProfesorHerbert Spencer

void draw() { background(100050); size (500,500);

 float a, b, c, i;  // variables
       c = 0;
       i = mouseX/2;  


   c = 5;
   i = mouseX/150;
   

float inc = TWO_PI / 5;

beginShape();

   for (float t =2; t < TWO_PI * mouseX/20; t += inc) {
      a = mouseX + cos(t) * c/80;
      b = mouseY + sin(t) * c/60;

   stroke(6);
   strokeWeight(10);
 
   vertex(a, b);
   c += b;}
   

endShape(); }