Are there any good implementations of spatial indexes in Haskell such as R-tree, kd-tree, etc...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The only implementations I'm aware of are the This is something that's been on my TODO list for a while, since there have been several occasions where I wanted a spatial index data structure, but didn't want one badly enough to stop everything and write a decent implementation on the spot. |
|||||||||
|
|
The Glome Raytracer uses a bounding interval hierarchy. It well modularized too, so you'll probably want to start with GlomeTrace and GlomeVec. I'm doing collision testing via point/volume queries and ray intersections. It seems to perform very well. |
|||
|