Codebase list node-d3-shape / upstream/latest src / point.js
upstream/latest

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

point.js @upstream/latestraw · history · blame

1
2
3
4
5
6
7
export function x(p) {
  return p[0];
}

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