AABB.clone constructor

AABB.clone(
  1. AABB a
)

Implementation

AABB.clone(AABB a)
    : left = a.left,
      top = a.top,
      right = a.right,
      bottom = a.bottom;