Aabb3.copy constructor

Aabb3.copy(
  1. Aabb3 other
)

Create a new AABB as a copy of other.

Implementation

Aabb3.copy(Aabb3 other)
    : _min = Vector3.copy(other._min),
      _max = Vector3.copy(other._max);