Daniela Reyes Tarea 3 Imagen escrita

De Casiopea


TítuloDaniela Reyes Tarea 3 imagen escrita
Palabras Clavetarea 3
AsignaturaImagen Escrita 2012, Taller Inicial 1ª y 2ª Etapa,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Daniela Reyes
ProfesorHelbert Spencer

float y, n; float m;

void setup() { size(700, 700);

}



void cruz(float claw, float y, float x) { float c = claw*8; stroke(#045F58); line(x, x-c, y, y-c);


}

void draw() { background(255);



for (int x = 0; x < height; x=x+2) {

  n = norm(x, width, 0); 
 m = map(mouseX, 0, width, 5,0);
 y = pow(n, m) * height;  
  cruz(x, 10, y);
}

println(m);

}