Camila Saavedra: Tarea 3

De Casiopea
Revisión del 09:01 12 abr 2012 de Camilaconstanza (discusión | contribs.)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)



TítuloCamila saavedra : tarea 3
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
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

void graficar(float amplitud, float frecuencia){ float ant = 2, act = 4; for(int x=0;x<=500;x+=4){ act = amplitud*cos(radians(frecuencia*x)); line(x-4,400+ant,400,100+act); ant=act; } } void setup(){ size(700,700); background(255); frameRate(80); }

void draw(){ background(230); graficar((200-mouseY)/3,mouseX/5); }