PROCESSING II

size (500, 500);
background (#FFFFFF);

fill (#000000);
noStroke ();

int n = 27;
int spacing = width / n;

int j = 0;
while (j < n) {
int i = 0;
while (i < n) {
circle (13 + (ispacing), 13 + (jspacing), 20);
i = i + 1;
}
j = j + 1;
}

PFont title_font = createFont (“Avenir Next Rounded Std”, 30);

fill (#000000);
noStroke ();
rectMode (CENTER);
rect(width/2,height/2 – 80, 300, 150);

fill (#FFFFFF);
textAlign (CENTER);
textFont (title_font);
textSize (100);
text(“sobre”, 250, 200);

fill (#FFFFFF);
noStroke ();
textSize (125);
text (“tudo”, 258, 290);

Deixe um comentário