Hi,
Im new to processing and i have a question. I need to do this image, circles on x and y axis where there is an increase of circles as shown in the image. This is what i have so far:
int x;
int y;
int max,may;
size(600,600);
background(155);
may = height/10;
max = width/10;
x = max/2;
y= may/2;
for( y= may/2; y<height; y=y+may)
{
for( x = max/2; x<width; x=x+max)
{
noStroke();
fill(200,0,0);
ellipse(x,y,max,may);
}
}