Aabb2.copy constructor

Aabb2.copy(Aabb2 other)

Create a new AABB as a copy of other.

Implementation

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