xxxxxxxxxx
//Anthony Espinosa-Perez
//Pd:1
void setup()
{
size(950,500);
background(191,10,48);
}
void draw()
{
//flag stripes
fill(255,255,255);
for(x=0;x<760;x=x+90)
{
rect(0,50+x,950,38.45);
}
//blue patch
noLoop();
fill(0,40,104);
rect(0,0,380,269.25);
//"stars" unindented
for(z=0;z<269.25;z=z+53.85)
{
fill(255,255,255);
for(y=0;y<345;y=y+63)
{
ellipse(30+y,31.5+z,15,15);
}
}
//5 by 4 "star" (indented) row
for(b=0;b<225;b=b+56.25)
{
fill(255,255,255);
for(a=0;a<315;a=a+64)
{
ellipse(60+a,55+b,15,15);
}
}
}