21.3.12

Ejercicio de Processing (sí, poniéndome al corriente)





void setup() {
  size (400,320);
  background (0);
}

 



void draw () {
 stroke(120,120,120,50);
 strokeWeight(2);
 smooth ();
 fill (5,0);
 ellipse ((random(400)),(random(320)),10,10);
 fill (12,120,120,50);
 ellipse((random(400)),(random(320)),10,10);
  fill (0,255);
 ellipse((random(400)),(random(320)),10,10);
    fill (0,255);
 ellipse((random(400)),(random(320)),10,10);
}

No hay comentarios:

Publicar un comentario