Doble for cuadrados
De Casiopea
Título | Doble for cuadrados |
---|---|
Tipo de Proyecto | Proyecto de Curso |
Asignatura | Taller Inicial Común 1ª y 2ª Etapa, |
Del Curso | Imagen Escrita, |
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) | Cindy Sanhueza |
Profesor | Herbert Spencer |
void setup() {
size(500, 500);
background(#6489E5); noLoop(); smooth();
}
void draw() {
for (int x=-1; x<=520; x= x+=15) { for (int y=0; y<=520; y= y+=20) {
fill(random(0, 250), random(1, 120), random(120, 150));
rect(x+(random(1, 10)), random (y+0), 50, 50); } }
}