Push after two months, oops

This commit is contained in:
Cametendo
2026-06-08 10:33:47 +02:00
parent 75299c9236
commit 8dfc70fde1
41 changed files with 2092 additions and 108 deletions

View File

@@ -1,13 +1,13 @@
function setup() {
createCanvas(800, 800);
background(200);
fill(150, 0, 0);
rect(0, 0, 60, 150);
createCanvas(800, 800);
background(200);
fill(150, 0, 0);
rect(0, 0, 60, 150);
translate(200, 120);
rotate(0.5);
scale(1.5);
translate(200, 120);
rotate(0.5);
scale(1.5);
fill(0, 150, 0);
rect(0, 0, 60, 150);
}
fill(0, 150, 0);
rect(0, 0, 60, 150);
}