Top "Quadtree" questions

A quadtree is a geometric data structure for storing points in two-dimensional space.

Creating a generic list of objects in C#

By way of an intro, I'm creating a basic Quadtree engine for personal learning purposes. I'm wanting this engine to …

c# list generics object quadtree
When to use Binary Space Partitioning, Quadtree, Octree?

I have recently learned about binary space partitioning trees and their application to 3d graphics and collision detection. I have …

3d tree quadtree octree space-partitioning
Efficient (and well explained) implementation of a Quadtree for 2D collision detection

I've been working on adding a Quadtree to a program that I'm writing, and I can't help but notice that …

data-structures collision rectangles quadtree
Quadtree for 2D collision detection

I'm trying to use a quadtree for 2D collision detection, but I'm a little stumped on how to implement it. …

data-structures collision game-physics quadtree
Quadtree explanation and C implementation

Please explain quadtrees and provide simple code (preferably in C) for insertion and searching.

c algorithm quadtree
Are any of these quad-tree libraries any good?

It appears that a certain project of mine will require the use of quad-trees, something that I have never worked …

python performance quadtree
QuadTree for 2D collision detection

I'm currently working on a 2D shoot them up type of game, and I'm using a quad tree for my …

c++ data-structures collision-detection quadtree
R-Tree and Quadtree Comparison

I want to compare the R-Tree and the Quadtree for geospatial data. While there is literature out there I struggle …

indexing geospatial quadtree r-tree
Difference between quadtree and kd-tree

What is the main difference between a quadtree and kd-tree? I understand they split points in many dimensions, but I …

computational-geometry kdtree quadtree
Quadtree vs Red-Black tree for a game in C++?

I have been looking for a quadtree/quadtree node implementation on the net for ages. There is some basic stuff …

c++ quadtree