xxxxxxxxxx
38
let r = 100;
let a = 0;
let numRings = 30;
let numPoints = 500;
function setup() {
createCanvas(600, 600);
stroke(255);
fill(255);
background(0);
colorMode(HSB);
}
function draw() {
translate(width/2, height/2);
for (let j = 0; j < numRings; j++) {
let color = map(j, 0, 10, 10, 255);
let offsetX = j * map(noise(j), 0, 1, -5, 5);
let offsetY = j * map(noise(j+1), 0, 1, -5, 5);
for (let i = 0; i < numPoints; i++) {
r = r + random(-1, 1);
let x = r * sin(a);
let y = r * cos(a);
stroke(color, 255, 255);
point(x + offsetX, y + offsetY);
a += i;
}
}
noLoop();
}