Sebastián González Líneas Curvas

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

Insertar aquí texto sin formato


TítuloTarea 3
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3, curvas, lineas, proyecto
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)Sebastián González
ProfesorHerbert 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); }