Aabb2 constructor

Aabb2()

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

Implementation

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