rename directories and add adittional dir

This commit is contained in:
Yannick7777 2025-04-02 11:01:01 +02:00
commit 905ab331f4
18 changed files with 88 additions and 0 deletions

16
1/sketch.js Normal file
View file

@ -0,0 +1,16 @@
function drawCanvasContent(){
createCanvas(windowWidth, windowHeight)
background(255)
for (let i = 0; i <= 50; i++) {
fill(0, 0, 0, 0)
square(random(width/2), random(height/2), random(width/8, width/2))
}
}
function setup() {
drawCanvasContent();
}
function mouseMoved() {
drawCanvasContent();
}