xxxxxxxxxx
48
function setup() {
createCanvas(400, 400);
colorMode(HSB, 360, 100, 15);
}
let noiseOffset = 0;
let colors = [
[255, 89, 191],
[168, 17, 110],
[255, 104, 113],
[78, 26, 61],
[149, 107, 235],
[183, 216, 192],
[120, 137, 125],
[223, 172, 144],
[115, 82, 64],
[136, 151, 235],
[237, 217, 139],
[76, 82, 112]
];
function draw() {
background(220);
noiseOffset += 0.008;
for (let i = 1; i < width+200; i += 10 ){
for (let j = 1; j < height+200; j += 15) {
stroke(0);
strokeWeight(random(1,1.5));
let n = noise(i * 0.01, j * 0.01, noiseOffset);
let hueValue = (noiseOffset * 15 + n * 300) % 360;
stroke(hueValue, 90 , 10);
line(i,-j,i+10,j+3);
line(i,j,i+10,j);
line(i,j,i+10,j-10);
// stroke(0);
strokeWeight(random(0,3));
line(-i,-j,i-50,j-50);
// stroke(255);
strokeWeight(random(0,0.8));
line(i+200,j+200,-i,-j);
line(-i-700,-j-700,i,j);
}
}
}