lunes, 13 de enero de 2020

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 linea horizontal
 strokeWeight(10);
 stroke(255);
 point(i,j);
  }
}
Share:

0 comentarios:

Publicar un comentario