offset method

IAABB offset(
  1. int dx,
  2. int dy
)

Implementation

IAABB offset(int dx, int dy) =>
    IAABB(left + dx, top + dy, right + dx, bottom + dy);