Codebase list node-d3-shape / upstream/1.3.5 src / pointRadial.js
upstream/1.3.5

Tree @upstream/1.3.5 (Download .tar.gz)

pointRadial.js @upstream/1.3.5raw · history · blame

1
2
3
export default function(x, y) {
  return [(y = +y) * Math.cos(x -= Math.PI / 2), y * Math.sin(x)];
}