Plot.plot({
x: { domain: [-1.1, 1.1] },
y: { domain: [-1.1, 1.1] },
width: 640,
height: 640,
marks: [
Plot.line(
d3
.range(0, 2 * Math.PI + Math.PI / (50 * N), Math.PI / (50 * N))
.map(t => [
Math.sin(N * t) * Math.cos(t),
Math.sin(N * t) * Math.sin(t)
])
),
Plot.ruleX([-1.1]),
Plot.ruleY([-1.1])
]
})