NeahNew/node_modules/d3-shape/src/point.js
2025-05-03 14:17:46 +02:00

8 lines
81 B
JavaScript

export function x(p) {
return p[0];
}
export function y(p) {
return p[1];
}