Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 4

void setup()

{
size(500,600);
}

void draw()
{
for()
{
for(int x=0; x<500; x=x+20)
{
circle();
}
}
}
VMX Varela Meza Daniel a Todos 8:25 AM
void setup()
{
size(500, 600);
}
void draw ()
{
for (int x=25; x<500; x=x+30)
{
for (int y=22; y<590; y=y+15)
{
circle(x, y, 30);
}
}
}
Regina Treviño de la Rosa a Todos 8:26 AM
void setup()
{
size(400,500);
frameRate(1);
}

void draw()
{
background(500,500,500);
for(int y=20; y<500; y=y+8)
{
for(int x=20; x<500; x=x+20)
{
//fill(random(255),random(255),random(255));
float a = random(10);
if(a<2)
{
fill(0,0,200);
circle(x,y,20);
}
else if(a<6)
{
fill(0,0,100);
circle(x,y,20);
}
else if(a>6)
{
fill(0,0,150);
circle(x,y,20);
}

}
}
}
Michel Soto a Todos 8:32 AM
void setup()
{
size(500,600);

void draw()
{
background(0);
for(int y=20; y<500; y=y+20)
{
for(int x=20; x<500; x=x+10)
{
circle(x,y,20);
//float r = random(255);
//float g = random(255);
//float b = random(255);
//fill(r, g, b);
}
}
}
void setup()
{
size(500,700);
frameRate(1);
}

void draw()
{
for(int x=0; x <520; x=x+35)
{

for(int y=0; y <720; y=y+35/2)


{
fill(random(209,250),random (150,200), random (50,100));
circle(x,y,35);
}
}
}
regina banuelos a Todos 8:39 AM
void setup ()
{
size(500,600);
frameRate(6);
}

void draw ()
{
for(int x=0; x<500; x=x+20)
{
for(int y=0; y<600; y=y+10)
{
fill(random(0,255), random(0,255), random(0,255), 100);

circle(x,y,20);
}
}
}
Abraham Kleinfinger Chayet a Todos 8:40 AM
void setup()
{
size(500,600);
background(250,250);
}

void draw()
{
for(int x=50; x<460; x=x+40)
{
for(int y=20; y<600; y=y+20)
{
float moneda = random(100);
if(moneda<20)
{
fill(random(118),random(23),random(23));
}
else if (moneda>20&&<40)
{
fill(random(98),random(163),random(250));
}
else if (moneda>40&&<60)
{
fill(random(249),random(98), random(250));
}
else if(moneda>60&&<80)
{
fill(random(247),random(250), random(98));
}
else
{
fill(random(250), random(98), random(111));
circle(x,y,40);

}
}
}
}
Michel Soto 8:42 AM
void setup()
{
size(500,600);
background(250,250);
}

void draw()
{
for(int x=50; x<460; x=x+40)
{
for(int y=20; y<600; y=y+20)
{
float moneda = random(100);
if(moneda<20)
{
fill(random(118),random(23),random(23));
}
else if (moneda>20 && moneda<40)
{
fill(random(98),random(163),random(250));
}
else if (moneda>40&& moneda<60)
{
fill(random(249),random(98), random(250));
}
else if(moneda>60&& moneda<80)
{
fill(random(247),random(250), random(98));
}
else
{
fill(random(250), random(98), random(111));
}
circle(x,y,40);
}
}
}

You might also like