In spatial hashing, we place each object into one or more "buckets". Think of a grid covering 2D space. When an object's bounding box covers one of the cells in this grid, it is placed into that cell. Any two unique objects that occupy the same cell are determined to be *potentially colliding*.
In Bonk, a spatial hash is defined by its ID type and a cell size. The ID type is used to filter objects. Any two objects with the same ID are assumed to not be colliding.
```cs
var hash = new SpatialHash<Guid>(32);
```
This spatial hash will use C# **GUID**s as its ID type and a cell size of 32.
To insert an object into the hash, use the **Insert** method and give an ID, an IShape2D, and a Transform2D.
```cs
var hash = new SpatialHash<int>(16);
var circle = new MoonTools.Core.Bonk.Circle(8);
var circleTransform = new Transform2D(new Vector2(16, 16));
var rect = new Rectangle(-2, -2, 2, 2);
var rectTransform = new Transform2D(new Vector2(8, 8));
hash.Insert(0, circle, circleTransform);
hash.Insert(1, rect, rectTransform);
```
To find potential collisions, use the **Retrieve** method and give an ID, an IShape2D, and a Transform2D.