xxxxxxxxxx
31
//Ethereal Blends
//Created by Mirette Dahab
//December 31st, 2024
//independant work
function setup() {
createCanvas(400, 400);
colorMode(HSB, 360, 100, 15);
}
let noiseOffset = 0;
function draw() {
background(220);
noiseOffset += 0.025;
for (let i = 1; i < width+200; i += 10 + sin(noiseOffset) * 7) {
for (let j = 1; j < height+200; j += 15 + cos(noiseOffset) * 7) {
strokeWeight(random(1,2));
let n = noise(i * 0.01, j * 0.01, noiseOffset);
let hueValue = (noiseOffset * 20 + n * 360) % 360;
stroke(hueValue, 90 , 10);
strokeWeight(random(1.8,2.3));
line(-i,-j,i-30,j-30);
}
}
}