Public
Edited
Feb 21
Fork of Beesandbombs
1 fork
1 star
Insert cell
Insert cell
Insert cell
{
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)]
})
]
});
}
Insert cell
function rose(r, n, d) {
const k = n / d;
const m = reduceDenominator(n, d);
const points = [];
for (let a = 0; a < Math.PI * 2 * m + 0.02; a += 0.02) {
const r1 = r * Math.cos(k * a);
const x = r1 * Math.cos(a);
const y = r1 * Math.sin(a);
points.push([x, y]);
}
return SVG.path({ d: d3.line()(points), stroke: "black", fill: "none" });
}
Insert cell
function reduceDenominator(numerator, denominator) {
function rec(a, b) {
return b ? rec(b, a % b) : a;
}
return denominator / rec(numerator, denominator);
}
Insert cell
SVG = cm.SVG
Insert cell
cm = require(await FileAttachment("charming.umd.min.js").url())
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more