Leninn G 1° ARQ curvas
De Casiopea
Título | curvas exponenciales |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Palabras Clave | tarea 3 |
Período | 2012-2012 |
Asignatura | Imagen Escrita 2012, |
Del Curso | Imagen Escrita 2012, |
Carreras | Arquitectura |
Alumno(s) | Leninn Gustainsson |
Profesor | Herbert Spencer |
float y,n; float m;
void setup (){
size (700,700);
}
void grilla (int divsX, int divsY){
stroke (15); float xSpacer = width/(float)divsX; float ySpacer = height/(float) divsY;
for (float y= ySpacer; y< height; y+=ySpacer){
line (0,y,width,y);
} for (float x= xSpacer; x<width; x+=xSpacer){
line (x,0,x,height);
} } void cruz(float x, float tam, float y) {
float t = tam; stroke(10); line(x, y, x, y*5); line(x+5, y*t, x+t, y*5);
}
void draw (){
background (666666); grilla (5,5); for(int x=0; x<width;x=x+1){ n= norm (x,0,height); m = map (mouseX,1,width,0,1); y=pow (n,m)*height; cruz (x,y,1); cruz (x,height-y,0); } println(m);}