IAABB constructor

IAABB(
  1. int l,
  2. int t,
  3. int r,
  4. int b,
)

Implementation

IAABB(int l, int t, int r, int b)
    : left = l,
      top = t,
      right = r,
      bottom = b;