8000 GitHub - d3/d3-quadtree: Two-dimensional recursive spatial subdivision.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ d3-quadtree Public

Two-dimensional recursive spatial subdivision.

License

Notifications You must be signed in to change notification settings

d3/d3-quadtree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

d3-quadtree

A quadtree recursively partitions two-dimensional space into squares, dividing each square into four equally-sized squares. Each distinct point exists in a unique leaf node; coincident points are represented by a linked list. Quadtrees can accelerate various spatial operations, such as the Barnes–Hut approximation for computing many-body forces, collision detection, and searching for nearby points.

Resources

0