Sebastián González Líneas Curvas
De Casiopea
Insertar aquí texto sin formato
Título | Tarea 3 |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 3, curvas, lineas, proyecto |
Período | 2012-2012 |
Asignatura | Taller Inicial Común 1ª y 2ª Etapa |
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) | Sebastián González |
Profesor | Herbert Spencer |
float y, n; float m;
void setup() { size (1000,1000); } void draw (float tam, float x, float y) { stroke(#DF3A01); line(x+y, x, y, x-y); }
void draw() { background(#B18904); for (int x = 200; x < width; x= x+2) { n = norm(x, width, 0); m = map(mouseX, 50, width, 0, 30); y = pow(n, m) * height; stroke (1); draw (x, y, 250); } println (m); }