Ilanit Hirnheimer: Imagen Escrita - Tarea 3

De Casiopea
Ilanit Hirnheimer: Imagen Escrita - Tarea 3


TítuloIlanit Hirnheimer: Imagen Escrita - Tarea 3
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2012-
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)Ilanit Hirnheimer
ProfesorHerbert Spencer

void graficar(float amplitud, float frecuencia){ float ant = 0, act = 0; for(int x=2;x<=500;x+=1){ act = amplitud*sin(radians(frecuencia*x)); line(x+1,350+ant,300,500+act); ant=act; } } void setup(){ size(700,700); background(#FFCCFF); frameRate(30); }

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