lunes, 13 de enero de 2020

2. Rejilla de puntos

int i,j;

fullScreen();
background(0);

for(j=5;j<height;j=j+20){
  for(i=5;i<width;i=i+20){//hace los puntos de una línea horizontal
   strokeWeight(10);
   stroke(171, 235, 198);
   point(i,j);
  }
}

0 comentarios:

Publicar un comentario