xxxxxxxxxx
47
let pts, hw, hh, r;
function setup() {
createCanvas(800, 800);
background(20);
stroke(color(220, 220, 220, 20));
pts = [];
hw = width / 2;
hh = height / 2;
r = width / 3;
for (let t = 0; t < TWO_PI; t += PI / 256) {
pts.push({
x: r * cos(t),
y: r * sin(t),
t: t,
});
}
}
function draw() {
translate(hw, hh);
let n = noise(frameCount * 0.01);
for (let p of pts) {
point(p.x, p.y);
// p.t += PI / random(16, 256);
// let a = map(n, 0.0, 1.0, -20, 20);
// p.x = r * cos(a) + 15 * tan(p.t / 2);
// p.y = r * sin(a) + 45 * tan(p.t / 2);
p.t += PI / random(16, 256);
let a = map(n, 0.0, 1.0, -20, 20);
p.x = r * cos(a) + random(1,15) * tan(p.t / random(2,8));
p.y = r * sin(a) + random(1,45) * tan(p.t / random(2,8));
}
translate(-hw, -hh);
if (frameCount > 2000) {
console.log("done");
noLoop();
}
}