Alyssa Ruts: Tarea 11
De Casiopea
Error al crear miniatura: Archivo más grande que 25 MP
Título | Tarea 11 |
---|---|
Palabras Clave | tarea 11 |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | 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) | Alyssa Ruts |
Profesor | Herbert Spencer |
/*construcción de espiral áurea*/ float phi = (sqrt(5)+1)/2; // phi = 1,618... size(490,300); background(#C1B9BA); // color de fondo translate(height/phi,0); scale(height); noStroke(); smooth(); for (float i=0; i<40; i=i+2) { rect(1,1,0,0); arc(0,0,2,2,0,PI/2); scale(1/phi); rotate(PI/2); translate(1/phi,0); } saveFrame("##.jpg"); // guarda imagen