Skip to content

Commit

Permalink
Default x and y to null in quadtree node.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasondavies committed Mar 19, 2013
1 parent ccfeadc commit d7fceea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/geom/quadtree.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ function d3_geom_quadtreeNode() {
return {
leaf: true,
nodes: [],
point: null
point: null,
x: null,
y: null
};
}

Expand Down

0 comments on commit d7fceea

Please sign in to comment.