getAABB method

AABB getAABB(
  1. int childIndex
)

Get the fixture's AABB. This AABB may be enlarge and/or stale. If you need a more accurate AABB, compute it using the shape and the body transform.

Implementation

AABB getAABB(int childIndex) {
  assert(childIndex >= 0 && childIndex < _proxyCount);
  return proxies[childIndex].aabb;
}