added some formatting

This commit is contained in:
Jürg Hallenbarter
2026-04-13 07:07:35 +00:00
parent 3f9de9c266
commit 5259410d77
7 changed files with 40 additions and 40 deletions

View File

@@ -3,31 +3,31 @@ function setup() {
}
function draw() {
background(random(100,200), 0, random(100,200));
background(random(100, 200), 0, random(100, 200));
for (let i = 0; i <= width * sqrt(2); i += 10){
stroke(random(255),random(255),random(255))
for (let i = 0; i <= width * sqrt(2); i += 10) {
stroke(random(255), random(255), random(255))
strokeWeight(2)
noFill()
circle(width/2 + random(0,30),height/2 + random(0,30),i)
circle(width / 2 + random(0, 30), height / 2 + random(0, 30), i)
const strokeValue = i%20 ? 100 : 0;
const strokeValue = i % 20 ? 100 : 0;
stroke(strokeValue)
}
for (let i = 0; i < 50; i++){
stroke(random(255),random(255),random(255))
for (let i = 0; i < 50; i++) {
stroke(random(255), random(255), random(255))
let x = random(0, width)
let y = random(0, height)
line(width/2,height/2,x,y)
line(width / 2, height / 2, x, y)
}
}
function mousePressed(){
for (let i = 0; i < 50; i++){
stroke(random(255),random(255),random(255))
let x = random(0, width)
let y = random(0, height)
line(mouseX,mouseY,x,y)
}
function mousePressed() {
for (let i = 0; i < 50; i++) {
stroke(random(255), random(255), random(255))
let x = random(0, width)
let y = random(0, height)
line(mouseX, mouseY, x, y)
}
}