This commit is contained in:
Jürg Hallenbarter
2026-04-01 06:34:17 +00:00
parent 68411e3314
commit 10c9cad0a6
8 changed files with 134410 additions and 0 deletions

18
Cubes.js Normal file
View File

@@ -0,0 +1,18 @@
function setup() {
createCanvas(500, 500);
background(255,255,255)
noFill();
for (i = 0; i < 30; i++){
circle(width/2 +random(-width/10, width/10), height/2 +random(-height/10, height/10), random(15)*i);
}
}
function draw() {
}
function mousePressed(){
}