Gabriela Díaz Naranjo Espiral
De Casiopea
Título | Espiral Gabriela |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 4 |
Período | 2013- |
Asignatura | Imagen Escrita, |
Del Curso | Imagen Escrita 2013 - DIS, |
Carreras | Diseñ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 |
Profesor | Herbert 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(); }