Daniela Delmás: Espiral

De Casiopea


TítuloDaniela Delmás: Tarea 11, Espiral
Tipo de ProyectoProyecto 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)Daniela Delmás
ProfesorHerbert Spencer

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

void setup() {

size(350,200);

noFill();

smooth();

strokeCap(SQUARE);

strokeWeight(0.03);

stroke(#00FFFF); }

void draw() {

translate(height/phi, 0); scale(height);

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