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

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

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

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

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