Aabb2 constructor

Aabb2()

Create a new AABB with min and max set to the origin.

Implementation

Aabb2()
    : _min = Vector2.zero(),
      _max = Vector2.zero();