flags

The first exercise of programming fundamentals (together with Cristobal Castilla) was to code flags, which introduced us what processing and programming is and how to get images out of range of numbers and letters. There were 16 flags to make. For example, that’s how Catalan flag looks like in code:

void setup() {
size (190, 120);
}
void draw(){
noStroke();
fill(255,223,58);
rect(0, 0, 190, 120);
fill(255,12,13);
rect(0,13,190,14);
fill(255,12,13);
rect(0,40,190,14);
fill(255,12,13);
rect(0,67,190,14);
fill(255,12,13);
rect(0,94,190,14);
}

And these are all flags made by Processing:





This entry was posted in Exercises, Gerda Antanaityte, Int Programming, Students and tagged , , , . Bookmark the permalink. Comments are closed, but you can leave a trackback: Trackback URL.