/** * @return x value of a node */ export function x (d) { return d.x; } /** * @return y value of a node */ export function y (d) { return d.y; }