Gabriela Díaz Naranjo Espiral

De Casiopea
Espiral Gabriela


TítuloEspiral Gabriela
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 4
Período2013-
AsignaturaImagen Escrita,
Del CursoImagen 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 setup() {
  size(800, 800);
}
void draw() {
  background(100050);


  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();
}