Camila Saavedra: tarea 11

De Casiopea
Camila Saavedra: tarea 11


TítuloCamila Saavedra: tarea 11
Tipo de ProyectoProyecto de Taller, Proyecto de Curso
Palabras Clavetarea 11
AsignaturaImagen Escrita 2012,
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)Camila Saavedra
ProfesorHerbert Spencer
 


/*construcción de espiral áurea*/

float phi = (sqrt(8)+1)/2; // phi = 1,618...
 
size(490,300);
background(#2EAF94); // color de fondo


translate(height/phi,7);
scale(height);
noStroke(); 
smooth();
 

for (float i=0; i<60; i=i+2) {
  rect(1,3,0,4);
  arc(0,0,3,2,0,PI/2);
  scale(1/phi);
  rotate(PI/2);
  translate(3/phi,0);  
}


saveFrame("##.jpg"); // guarda imagen