Paulina Martínez IE2012 Tarea 3
De Casiopea
Título | Paulina Martínez IE2012 Tarea 3 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | Tarea 3 |
Período | 2012º"º" no puede asignarse a un tipo de número declarado con valor 2012.-2012 |
Del Curso | Imagen Escrita 2012, |
Carreras | Diseñ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) | Paulina Martínez |
Profesor | Herbert Spencer |
void graficar(float amplitud, float frecuencia){ float ant = 3, act = 3; for(int x=20;x<=1000;x+=2){ act = amplitud*sin(radians(frecuencia*x)); line(x+2,600+ant,600,300+act); ant=act; } } void setup(){ size(700,700); background(#FFCCFF); frameRate(100); }
void draw(){ background(150); graficar((200-mouseY)/2,mouseX); }