pub fn batch_radius_query(
query_points: &[Vec3],
positions: &[Vec3],
radius: f32,
) -> Vec<(usize, usize, f32)>Expand description
Find all positions within radius of any of the given query_points.
Returns pairs of (query_index, position_index, distance).