Skip to content

Commit dd35f95

Browse files
authored
Update README.md
1 parent 42cd6b5 commit dd35f95

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# static Quadtree
22

3-
A data structure used for efficient location approximation of coordinates on a plain. My version here is static which means it is completely built from the top down during initialization. Only simple minimum and maximum querries are made against objects to find which (ready made) quadnodes they intersect and to focus on within the sub-quadnodes. This static model eliminates both the real-time creation of Quadnode objects and the calculations needed to identify their vertical/horizontal centers.
3+
A data structure used for efficient location approximation of coordinates on a plain. My version here is static meaning it is completely built from the tip down to the leaves during initialization. Only simple minimum and maximum querries are made against AABBs to find which (ready made) quadnodes they intersect and to focus on within the sub-quadnodes. This static model eliminates both the real-time creation of Quadnode objects and the calculations needed to identify their vertical/horizontal centers.
4+
5+
The Quadtree will look for at least 2 AABBs that share the same leaf quadnode marking each as being in close proximity to the other.
46

57
contains:
68
- Quadtree.java

0 commit comments

Comments
 (0)