{
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;
return SVG.svg({
width,
height: width,
"stroke-width": 1.2,
children: [
SVG.g(cells, {
transform: ([x, y]) => `translate(${scale(x) + r}, ${scale(y) + r})`,
children: [([x, y]) => rose(r, x + 1, y + 1)]
})
]
});
}