This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int linhas = 5; | |
| int colunas = 5; | |
| void cor(){ | |
| fill(int(random(255)), int(random(255)), int(random(255))); | |
| } | |
| void bloco(int x, int y) { | |
| cor(); | |
| rect(x-60,y-60,120,120); |
NewerOlder