AABB constructor

AABB()

Creates the default object, with vertices at 0,0 and 0,0.

Implementation

AABB()
    : lowerBound = Vector2.zero(),
      upperBound = Vector2.zero();