copyFrom method

void copyFrom(
  1. Aabb3 other
)

Copy the min and max from other into this.

Implementation

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