inset method

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

Implementation

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