copyFrom method

void copyFrom(
  1. Aabb2 other
)

Copy the min and max from other into this.

Implementation

void copyFrom(Aabb2 other) {
  _min.setFrom(other._min);
  _max.setFrom(other._max);
}