Processing — Exercício II

size (500, 500);
background (#0E468A);

// fundo - padrão

// fundo - padrão
noStroke ();
fill (#ED6C26);
int a = 25;

int spacing = width/a;

int b = 0;
while (b < a) {
int c = 0;
while (c < a) {
circle (10 + (c * spacing), 10 + (b * spacing), 12);
c = c + 1;
}
b = b + 1;
}

PFont title_font = loadFont ("NewFont-Regular-200.vlw");
textFont(title_font);

textAlign(CENTER);
fill (255);
textFont(title_font);
text("aeiou", 250, 300);

save("aeiou_MODII.png");

Deixe um comentário