Alejandra Andrades Thomas: curvas

De Casiopea


TítuloAlejandra Andrades Thomas: Curvas
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2012-2012
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)Alejandra Andrades Thomas
ProfesorHerbert Spencer


float y, n; 
float m; 
void setup() { 

  size(700, 700);
} 
void grilla(int divsX, int divsY) { 

  stroke(240);  
  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 y, float tam) { 

  float t = tam/2; 
  stroke(45, 50, 247, 70);
  line(y-t, x-t, x+t, y+t);
  line(x-t, y+t, x+t, y-t);
} 

void draw() { 

  background(255);
  grilla(40, 20);
  for (int x = 0; x < width; x++) {
    n = norm(x, 0, width);
    m = map(mouseX, 0, width, 1, 40);
    y = pow(n, m) * height;
    cruz(x, y, 13);
    cruz(x, height-y, 13);
  }
  println(m);
}