makearmy-app/node_modules/d3-shape/src/pointRadial.js
2025-09-22 10:37:53 -04:00

3 lines
101 B
JavaScript

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