xxxxxxxxxx
41
x1 = 200
y1 = 200
function setup() {
createCanvas(700, 700);
let bgs = ['#FFFFFF', '#D96064', '#FFCACA', '#78B4CE', '#56859D', '#39465C', '#2B0700', '#E6E6E6'];
let bg = random(bgs);
c = color(bg);
background(240);
strokeWeight(1);
strokeCap(SQUARE)
}
function draw() {
x1 = x1 -10;
y1 = y1 -10;
rot = random(360);
let shades = ['#FFFFFF', '#D96064', '#FFCACA', '#78B4CE', '#56859D', '#39465C', '#2B0700'];
let shade = random(shades);
c = color(shade);
stroke(c)
for (x = 0; x < 90; x++) {
push();
translate(width / 2, height / 2);
rotate(radians(x) + rot);
line(x1, y1,0,0);
pop();
}
if (x1 < 10) {
noLoop();
}
}