Aabb2.copy constructor

Aabb2.copy(
  1. Aabb2 other
)

Create a new AABB as a copy of other.

Implementation

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