CODIGO , letras "For"

void setup() {
  size(800, 800);
  }

 void draw() {
   background(200,200,5);
    for (int i=0;i<width;i+=50) {
      for (int j=0; j<height; j+=50) {
        fill(255);
        textSize((int) 2+j*0.1);
          text("C", i, height-j);
      }
    }
  }

No hay comentarios:

Publicar un comentario