Processing II

Segunda experimentação com o Processing:

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

int n = 10;
int spacing = width / n;

int j = 0;
while (j < n) {
int i = 0;
while (i < n) {
fill (#F492F5);
stroke (#F492F5);
square (10 + (i* spacing), 10 + ( j * spacing), 30);
i = i +1;
}
j = j + 1;
}

PFont title_font = loadFont (“AvenirNextCondensed-BoldItalic-48.vlw”);
textFont(title_font);
textAlign (CENTER);
fill (#7703FF);
textAlign(CENTER);
text(“PROOOCESSING”, 250, 200);
text(“PROOOCESSING”, 250, 260);
text(“PROOOCESSING”, 250, 320);

noStroke();
fill (#7703FF);
circle(250,400,50);

fill(#FCDB7D);

rectMode(CENTER);
rect(250,408,15,4);

circle(240,395,7);
circle(260,395,7);

Suzana Mendonça MPTEC 2020

Deixe um comentário