Implementing a Linear Quadtree in Rust

I’ve been working on a video game for some time now. This game has a lot of 2D spacial data I want to query.But most of this data is sparse, so using a grid would waste a lot of memory.As an optimization I employed a linear Quadtree. In this post I’ll exp… Read more

Similar