offset method

AABB offset(
  1. double dx,
  2. double dy
)

Implementation

AABB offset(double dx, double dy) {
  return AABB.fromValues(left + dx, top + dy, right + dx, bottom + dy);
}