[][src]Module flat_spatial::densegrid

Structs

DenseGrid

DenseGrid is a point-based spatial partitioning structure that uses a simple Vec which acts as a grid instead of a tree. It is Dense because all cells within the bounding rectangle of the inserted points must be allocated, even if they are empty.

DenseGridCell

A single cell of the densegrid, can be empty

DenseGridHandle

This handle is used to modify the associated object or to update its position. It is returned by the insert method of a DenseGrid.