Ramón Pizarro Briceño: Tarea 11

De Casiopea
Ramón Pizarro Briceño: Tarea 11


TítuloRamón Pizarro Briceño: Tarea 11
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)Ramon Pizarro
ProfesorHerbert Spencer

float phi = (sqrt(4.5)+1)/2;


size(510, 500); translate(height/phi, 0); scale(height); noStroke(); smooth();

for (float i=0; i< 25; i++) { // define el número de niveles de la espiral


 fill(255, 100); // colores transparente 
 rect(0, 0, 1, 1);
 fill(255, 0, #F7FE2E, 150);
 arc(0, 0, 2, 2, 0, PI/2);
 scale(1/phi);
 rotate(PI/2.5);
 translate(1/phi, 0);

}