Codebase list node-d3-shape / run/c909cc42-12e7-4728-a87e-1842402a17c1/main src / pointRadial.js
run/c909cc42-12e7-4728-a87e-1842402a17c1/main

Tree @run/c909cc42-12e7-4728-a87e-1842402a17c1/main (Download .tar.gz)

pointRadial.js @run/c909cc42-12e7-4728-a87e-1842402a17c1/mainraw · history · blame

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