expandToIncludeAabb method

void expandToIncludeAabb(
  1. Aabb other
)

Implementation

void expandToIncludeAabb(Aabb other) {
  expandToInclude(other.min);
  expandToInclude(other.max);
}