xxxxxxxxxx
29
let x = 0;
let y = 0;
let spacing = 20;
let hueValue = 100;
function setup() {
createCanvas(600, 600);
colorMode(HSB, 360, 255, 255, 255);
background(0);
}
function draw() {
stroke(hueValue, 255, 255);
if (random(1) < 0.1) {
line(x, y, x + spacing, y + spacing);
} else {
line(x, y + spacing, x + spacing, y);
}
x = x + spacing;
if (x > width) {
x = 0;
y = y + spacing;
}
// hueValue++;
hueValue = hueValue + random(-5,5);
hueValue = constrain(hueValue, 0, 360);
}