aabbQuery method

List<Body> aabbQuery(
  1. World world,
  2. AABB aabb,
  3. List<Body> result
)

Returns all the bodies within the AABB.

Implementation

List<Body> aabbQuery(World world,AABB aabb,List<Body> result) {
  logger?.info('.aabbQuery is not implemented in this Broadphase subclass.');
  return [];
}