Matias Chacon parabola
De Casiopea
Título | Matias Chacon parabola 3era tarea |
---|---|
Tipo de Proyecto | Proyecto de Taller, Proyecto de Curso |
Palabras Clave | tarea 3, imagen escrita 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) | Matias Chacon |
Profesor | Herbert Spencer |
float y, n; float m;
void setup() {
size(800, 1000); }
void cruz(float tam, float x, float y) {
float t = tam*1; stroke(7982 ); line(x,y,x-y,x*y); stroke (#000000); line(x,y,x+y,y-x);
}
void draw() {
background(987355); /* */ for (int x = 0; x < height; x++) {
n = norm(x, 0, height); m = map(mouseX, 0, width, 1, 25); y = pow(n, m) * height; cruz(x, y, x); cruz(x, x-y, y+x);
} println(m); }