Did things

This commit is contained in:
Cametendo
2026-04-01 11:45:22 +02:00
parent adc8b47772
commit 97a7c9f0fb
15 changed files with 123 additions and 2 deletions

13
Day-2/transformations.js Normal file
View File

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