xxxxxxxxxx
42
x1 = 0;
y1 = 0;
function setup() {
createCanvas(700, 700);
let bgs = ['#FFFFFF', '#D96064', '#FFCACA', '#78B4CE', '#56859D', '#39465C', '#2B0700', '#E6E6E6'];
let bg = random(bgs);
c = color(bg);
background(bg);
let ws = [3, 10]
let w = random(ws);
strokeWeight(w);
}
function draw() {
x1 = x1 + 8;
y1 = y1 + 8;
rot = random(360);
let shades = ['#FFFFFF', '#D96064', '#FFCACA', '#78B4CE', '#56859D', '#39465C', '#2B0700', '#E6E6E6'];
let shade = random(shades);
c = color(shade);
stroke(c)
for (x = 0; x < 180; x++) {
push();
translate(width / 2, height / 2);
rotate(radians(x) + rot);
point(x1, y1);
pop();
}
if (x1 > 150) {
noLoop();
}
}