xxxxxxxxxx
46
i = 0;
rad = 0;
xoff = 0;
px = -100;
py = -100;
function setup() {
createCanvas(700, 700);
background(0);
let shades = ["#CAFFFD", "#F8DFD6", "#ECBAA7", "#FFA671", "#E79F7A", "#759286", "#014B47"];
let shade = random(shades);
cS1 = color(shade);
stroke(cS1);
r1 = random(1, 2);
r2 = random(1, 2);
}
function draw() {
xoff = xoff + 0.01;
n = noise(xoff) * 2;
strokeWeight(random(1, 2));
var radius = rad;
var angle = TAU / 200;
var x1 = cos(angle * i) * radius;
var y1 = sin(angle * i) * radius;
var x2 = cos(angle * i) * radius;
var y2 = sin(angle * i) * radius;
i = i + 3;
point(x1 * n * r1 + px, y1 * n * r2 + py);
if (x1 == rad) {
rad = rad + 3;
let shades = ["#CAFFFD", "#F8DFD6", "#ECBAA7", "#FFA671", "#E79F7A", "#759286", "#014B47"];
let shade = random(shades);
cS1 = color(shade);
stroke(cS1);
}
}
function mouseReleased() {
px = mouseX;
py = mouseY;
rad = 0;
}