Uses of Interface
de.extio.spacecraft.shared.world.SpatialIndex2D
-
Packages that use SpatialIndex2D Package Description de.extio.spacecraft.shared.world Algorithmic implementations and utilities for the game world subsystem -
-
Uses of SpatialIndex2D in de.extio.spacecraft.shared.world
Classes in de.extio.spacecraft.shared.world that implement SpatialIndex2D Modifier and Type Class Description class
BinarySearchIndex2D<T extends SpatialIndex2Capable>
BinarySearchIndex2D is indexing one dimension with an ordered list that can then be queried using binary search.class
HashBucketIndex2D<T extends SpatialIndex2Capable>
HashBucketIndex2D is indexing one dimension using hash buckets that can then be queried for filtering the other dimension.class
LinearSearchIndex2D<T extends SpatialIndex2Capable>
LinearSearchIndex2D doing linear search only.class
QuadTree<T extends SpatialIndex2Capable>
This is the preferred SpatialIndex2D implementation to index bigger amounts of spatial data and query them efficiently.
-