Tarea Processing 3

De Casiopea


TítuloTarea 3
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2012-2012
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)Antonia Lara
ProfesorHelbert Spencer

void graficar(float amplitud, float frecuencia){ float ant = 0, act = 0; for(int x=2;x<=500;x+=1){ act = amplitud*cos(radians(frecuencia*x)); line(x+1,200+ant,x,400+act); ant=act; } } void setup(){ size(700,700); background(230); frameRate(50); }

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