Ilanit Hirnheimer: Imagen Escrita: Tarea 11
De Casiopea
Título | Ilanit Hirnheimer: Imagen Escrita: Tarea 11: Fibonacci |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 11 |
Del Curso | Imagen Escrita 2012, |
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) | Ilanit Hirnheimer |
Profesor | Herbert Spencer |
float phi = (sqrt(5)+1)/2;
void setup() {
size(232,200); noFill(); smooth(); strokeCap(SQUARE); strokeWeight(0.01); stroke(#ff0000); } void draw() {
translate(height/phi, 0); scale(height);
for (float i=0; i < 30; i=i+3) {
arc(0, 0, 2, 2, 0, PI/2); scale(1/phi); rotate(PI/2); translate(1/phi, 0); } }