Javiera Ramírez- Trama

De Casiopea
Trama


TítuloTrama
Tipo de ProyectoProyecto de Taller
Período2011-
AsignaturaImagen Escrita,
CarrerasArquitectura
Alumno(s)Javiera Ramírez
ProfesorHerbert Spencer

float m; float inc;

void setup() {

 size(400, 400);
 background(#70F23D);
 noLoop();
 smooth();
 m = 20;
 inc = 10;

}

void draw() {

 for (float y = m; y < height-m; y *= 1.1) {
   for (float x = m; x < width-m ; x *= 1.1) {
     line (x, m, x, height-m);
     strokeWeight(4);
     ellipse (x, y, inc/2, inc/2);
   }
 }
 saveFrame("trama2.jpg");

}