Added some things

This commit is contained in:
Cametendo
2026-04-20 11:20:54 +02:00
parent 97a7c9f0fb
commit 372b892862
29 changed files with 406 additions and 92 deletions

17
Week-1/labyrinth.js Normal file
View File

@@ -0,0 +1,17 @@
let x, y = 0;
function setup() {
createCanvas(800, 800);
strokeWeight(5);
background("gray");
}
function draw() {
for (let x = 0; x <= width; x += 40) {
for (let y = 0; y <= height; y += 40) {
square(x, y, 40);
}
}
line(width, height, -800, -800); // :3
}