Tarea 11 curva doble

De Casiopea
tarea 11 curva doble


Títulotarea 11 curva doble
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)Claudio Gómez
ProfesorHerbert Spencer

dentro de lo que era la curva, adherir otras más que siguieran la curva central de forma paralela, además otras curvas pequeñas que intersectaran la curva central

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

void setup() {

 background(255, 255, 255);
 size(400, 200);
 noFill();
 smooth();
 strokeWeight(0.03);
 stroke(#175D08);

} void draw() {

 translate(height/phi, 3);
 scale(height);
 for (float i=0; i < 40; i=i+4) {
   arc(0, 0, 1.9, 1.9, 0, PI/2);
   arc(0, 0, 2.1, 2.1, 0.1, PI/2);
   scale(1/phi);
   rotate(PI/2);
   translate(1/phi, 0.1);
 }
 for (float j = 2; j < 44; j = j+5) {
   arc (0, 0, 2.2, 2, 0, PI/2);
   scale (2 /phi);
   rotate ( PI/2);
   translate ( 1/ phi, 0);
 }
 saveFrame ("sddsdfsdfsf.jpg");

}