https://github.com/threeletters/quadtree
Another quadtree attempt
https://github.com/threeletters/quadtree
failed
Last synced: 11 months ago
JSON representation
Another quadtree attempt
- Host: GitHub
- URL: https://github.com/threeletters/quadtree
- Owner: ThreeLetters
- Created: 2016-09-21T13:40:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-22T12:38:32.000Z (about 9 years ago)
- Last Synced: 2025-03-02T23:16:25.375Z (over 1 year ago)
- Topics: failed
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QuadTree
Another quadtree attempt
## Usage
```
var quadtree = new QuadTree({
x: 0,
y: 0,
width: 100,
height: 100
})
var node = {
bounds: {x:10,y:10,width:0,height:0}
}
quadtree.insert(node)
```