/// <summary> /// Merge this box with another. /// </summary> /// <param name="box">The box to merge.</param> public void merge(AxisAlignedBox box) { maximum.makeCeiling(box.maximum); minimum.makeFloor(box.minimum); }