search
Searches the R-tree for all items that intersect with the given bounding box.
This method efficiently finds all features whose bounding boxes overlap with the provided bbox. It traverses the tree, pruning branches that do not intersect with the search area, making it much faster than a linear scan for large datasets.
Return
A list of items (T) whose bounding boxes intersect with the given bbox. Returns an empty list if no intersecting items are found.
Parameters
bbox
The BoundingBox to search within.