2. rejilla de puntos

int i=0;
int j=0;
fullScreen();
background (0);
for (j=20;j<height-20;j=j+20){
for(i=5;i<width-5;i=i+20){
strokeWeight(10);
stroke (255);
point (i,j);
}}

Comentarios