Aabb2.copy constructor
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);
Create a new AABB as a copy of other
.
Aabb2.copy(Aabb2 other)
: _min = new Vector2.copy(other._min),
_max = new Vector2.copy(other._max);