Nexus / node_modules /d3-shape /src /pointRadial.js
Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
101 Bytes
export default function(x, y) {
return [(y = +y) * Math.cos(x -= Math.PI / 2), y * Math.sin(x)];
}