setFrom method

void setFrom(
  1. Aabb3 other
)

Set the min and max from the other.

Implementation

void setFrom(Aabb3 other) {
  min.setFrom(other.min);
  max.setFrom(other.max);
}