{
const width = 800;
const vector = d3.range(count);
const cells = d3.cross(vector, vector);
const scale = d3.scaleBand().domain(vector).range([0, width]).padding(0.1);
const r = scale.bandwidth() / 2;
const size = scale.step();
const pos = (x) => scale(x) + r;
const center = [width / 2, width / 2, width];
const to = (end) => move(current, end);
let view;
let current = center;
let zooming = false;
function move(start, end) {
if (zooming) return;
zooming = true;
const interpolator = d3.interpolateZoom(start, end);
const duration = interpolator.duration * 1.2;
const selection = d3.select(view);
const transform = (t) => {
const view = interpolator(t);
const k = width / view[2];
const translate = [width / 2 - view[0] * k, width / 2 - view[1] * k];
return `translate(${translate}) scale(${k})`;
};
selection
.transition()
.duration(duration)
.attrTween("transform", () => transform)
.end()
.then(() => ((zooming = false), (current = end)));
}
return cm.render({
width,
height: width,
stroke: "black",
draw: [
(view = SVG.g({
transform: "translate(0, 0) scale(1)",
children: [
SVG.g(cells, {
"stroke-width": 1.2,
style: "cursor:pointer",
transform: ([x, y]) => `translate(${pos(x)}, ${pos(y)})`,
children: [([x, y]) => rose(r, x + 1, y + 1)],
onclick: ([x, y]) => () => to(current === center ? [pos(x), pos(y), size]: center)
})
]
}))
]
});
}