Espiral, Carolina Olivares

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ítuloEspiral, Carolina Olivares
Tipo de ProyectoProyecto de Taller
Palabras Clavetarea 3, espiral
Período2013-
AsignaturaImagen Escrita 2013 - DIS,
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)Carolina Olivares Rivera
ProfesorHerbert Spencer

Espiral:

void setup() { size(500, 500); noFill(); } void draw() { background(126); float x, y, r, rInc; r = 0; rInc = mouseX/25; r = 0; rInc = mouseX/50; float inc = TWO_PI / 40; beginShape(); for (float t = 5; t < TWO_PI * mouseX/30; t += inc) { x = mouseX + cos(t) * r/15; y = mouseY + sin(t) * r/15; vertex(x, y); r += rInc; } endShape(); }