Skip to content

Instantly share code, notes, and snippets.

@ALMTC
ALMTC / Estudo_de_Cores_Farbstudie.pde
Created March 20, 2019 08:24
Estudo de cores Mami
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);