Sofia Enriquez, doble for
De Casiopea
Título | Sofia Enriquez, doble for |
---|---|
Carreras | Diseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property. |
Alumno(s) | Sofia Enriquez |
void setup () {
size(400,400); background(#9DD106); smooth(); noLoop();
}
void draw() {
for (int a=8;a <= 350; a+= 80){ for(int b=5;b<=350; b+= 20){ for(int c=5;c<=350;c+=20){ stroke(350,240,random(20,350)); triangle(a,a,random(10,20),random(5,20),a,c); triangle(a+(random (-8,8)), c+30, a+50, c+50, a+30, c+30); fill(random(80,90),random(8,50),random(7,350)); stroke(350); stroke(6); fill(#C786D6); ellipse(a,a,5,5); for ( int i = 300; i < height; i += 21) { for (int f = 12; f < width; f += 33) { line ( i, 400, f, 99); fill(random(199,80),random(58,70),random(8,99)); stroke (#C786D6); } } } } } saveFrame("sofitalinda.jpg"); }