(BlockPos newMin, BlockPos newMax)
| 63 | } |
| 64 | |
| 65 | public void extendToEncompassBoth(BlockPos newMin, BlockPos newMax) { |
| 66 | this.min = VecUtil.min(this.min, newMin, newMax); |
| 67 | this.max = VecUtil.max(this.max, newMin, newMax); |
| 68 | } |
| 69 | |
| 70 | public void setMin(BlockPos min) { |
| 71 | if (min == null) return; |
no test coverage detected