Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi authored Apr 4, 2017
1 parent 956cd56 commit 04159b6
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
Simple java implementation of a quadtree
# JavaQuadTree

Just a simple java implementation of a quadtree

## Usage

```
PointQuadTree<String> tree = new PointQuadTree<String>(new Point(0, 0), new Dimension(600, 600));
tree.insert(1, 3, "1");
tree.insert(11, 32, "2");
tree.insert(11, 52, "3");
tree.insert(454, 555, "4");
tree.insert(353, 555, "5");
tree.insert(552, 555, "6");
tree.insert(551, 555, "7");
```

0 comments on commit 04159b6

Please sign in to comment.