Paulina Mora: doble for

| Título | Doble for |
|---|---|
| Asignatura | Taller Inicial 1ª y 2ª Etapa, |
| Del Curso | Imagen Escrita, |
| Alumno(s) | Paulina Mora |
| Profesor | Herbert Spencer |
void setup () {
size (400, 400); background (250); smooth();
noStroke();
}
void draw () {
for ( int i = 20; i < height; i +=50) {
for (int f =10; f < width; f += 50) {
fill(random(1,255),random(1,255),random(250,200));
ellipse(f+(random(-40,25)), i+10, width+5, height+10);
stroke (50, 10,50);
noStroke();
colorMode(HSB, 281, 82,46);
for (int y = 3; y < 100; y++) {
stroke(i,y, random(1,60));
}
}
}
saveFrame("pauli-doblefor.jpg");
}