José Suter tarea 6

De Casiopea
José Suter tarea 6


TítuloJosé Suter tarea 6
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 6
Período2012-
AsignaturaImagen Escrita 2012,
Del CursoImagen Escrita 2012,
CarrerasArquitectura
Alumno(s)José Suter
ProfesorHerbert Spencer

Elemento[] cosas; int count;

Elemento especial;

void setup() {

 cosas = new Elemento[800];
 count = 0;
 size(700, 700);
 background(75,85,108);
 especial = new Elemento(width/7, height/6);
 especial.c = color(235,239,250);
 especial.d = 9;
 especial.velx = 8;
 especial.vely = 7;
 especial.edadMax = 4300;

}

void draw() {

 for (int i = 0; i < count; i++) {
   cosas[i].existe();
 }
 especial.existe();
 saveFrame("tarea6.jpg");

}

void mousePressed() {

 cosas[count] = new Elemento(mouseX, mouseY);
 cosas[count].velx = mouseX - pmouseX;
 cosas[count].vely = mouseY - pmouseY;
 count ++;

}

void keyPressed() {

 cosas[count] = new Elemento();
 count ++;

}

/*--------------------------------------------------------------*/

class Elemento {

 float x, y;
 float d;
 color c; 
 float velx, vely;
 int edadMax;
 int edad; 
 Elemento(float posX, float posY) {
   x = posX;
   y = posY;
   c = color(235,239,250);
   velx = vely = 0;
   edadMax = round(random(300, 200));
   edad = 0;
   d = random(21, 21);
 }
 Elemento() {
   x = random(width);
   y = random(height);
   c = color(235,239,250);
   velx = vely = 0;
   edadMax = round(random(300, 200));
   edad = 0;
   d = random(21, 21);
 }
 void dibuja() {
   noStroke();
   fill(c);
   ellipse(x, y, d, d);
   edad ++;
   d -= 0.1;
 }
 void actualizaPosicion() {
   x += velx;
   y += vely;
 }
 void revisaSiRebota() {
   if ((x < d/2) || (x > width - (d/2))) {
     velx *= -1;
     vely += random(-1, 1);
   }
   if ((y < d/2) || (y > height - (d/2))) {
     vely *= -1;
     velx += random(-1, 1);
   }
 }
 void existe() {
   if (edad < edadMax) {
     dibuja();
     actualizaPosicion();
     revisaSiRebota();
   }
 }

}