Francisca Torres: Figura

De Casiopea
Francisca Torres: Figura


TítuloFrancisca Torres: Figura
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2013-
AsignaturaImagen Escrita,
Del CursoImagen Escrita 2013 - ARQ,
CarrerasArquitectura
Alumno(s)Francisca Torres
ProfesorHerbert Spencer
int num = 10;

float i = TWO_PI / num; 
float r = 70; 
float x, y;

void setup() {

  size(500, 500);
}

void draw() {
  background (random(100, 255), random(100, 255), random(100, 255));
  num = mouseX / 40;  
  float i = TWO_PI / num; 


  beginShape ();
  fill (0);
  for (float t = 0; t < TWO_PI; t = t + i) {
    x = cos(t) * r + width/2;
    y = sin(t) * r + height/2;
    vertex (x, y);
    x = cos(t) * r + 100;
    y = sin(t) * r + 100;
    vertex (x, y);
  }
  endShape ();

  String filename = "poligono polar javier garin-"+year()+"_"+month()+"_"+day()+"___"+hour()+"-"+minute()+"-"+second()+".png";
  if (key == 's' || key == 'S') {
    saveFrame(filename);
    println("se ha grabado exitosamente el archivo "+filename);
  }
  if (key == ' ') {
  }
}