xxxxxxxxxx
39
x1 = 50;
x2 = 50;
y = 50;
function setup() {
createCanvas(1800, 1800);
background('#FFF4F0');
let shades = ['#3160B8', '#FF8363', '#DE593A'];
let shade = random(shades);
c = color(shade);
stroke(c);
hspace = (random(0, 35));
vspace = (random(0, 35));
}
function draw() {
if (x1 < width-60 || x2 < width-60) {
line(x1, y, x2 + hspace, y + vspace);
y = y + vspace;
if (y > height-60) {
x1 = x1 + hspace;
x2 = x2 + hspace;
hspace = (random(0, 35));
y = 50;
}
}
if (frameCount > random(0, 35)) {
let shades = ['#3160B8', '#95270B', '#FF8363'];
let shade = random(shades);
c = color(shade);
stroke(c);
vspace = random(0, 35);
frameCount = 0;
}
}