bot script now uses closures - I really shouldn't have to have

changed this in both places
This commit is contained in:
Mike Lynch 2025-04-20 15:29:55 +10:00
parent f397af24cd
commit 3a9d2190ba

View File

@ -156,13 +156,14 @@ function poptimal_svg(params) {
params.patterns.map((p) => {
const dots = dm.dots(1 / p.m, p.n, false);
const rfunc = dm.radius(p.f);
const dots_g = svg.append("g")
.attr("id", `dots${p.i}`);
dots_g.selectAll("circle")
.data(dots)
.join("circle")
.attr("r", (d) => dm.radius(d, p.f, p.r))
.attr("r", (d) => rfunc(d, p.r))
.attr("fill", p.colour)
.attr("cx", (d) => d.x)
.attr("cy", (d) => d.y);