Camilo Escobar: Fibonacci

De Casiopea


Títuloespiral aurea
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 11
AsignaturaTaller Inicial Común 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
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)Camilo Escobar
ProfesorHerbert Spencer

//* espiral en base a la secuencia de Fibbonacci

float T = (sqrt(5)+1)/2;
size(300, 300);
background(255);
translate(height/T, 0);
scale(height);
noStroke();  
smooth();
for (float i=0; i<10; i++) {
  fill(255);
  rect(0, 0, 1, 1);
  fill(150, 200, 0, 150);
  arc(0, 0, 2, 2, 0, PI/2);
  scale(1/T);
  rotate(PI/2);
  translate(1/T, 0);
}