pub fn intersect_scan<B, ID>(
a: &BBoxSet<B, ID>,
b: &BBoxSet<B, ID>,
out: &mut Vec<(ID, ID)>,
)Expand description
Finds all intersections between boxes in a and b using a scanning algorithm.
Should perform reasonably up to approximately 1,000 boxes
aandbmay be either the same or distinctBBoxSets and must be sorted before calling.outwill contain pairs ofIDs of intersecting boxes.