Offsets the current bounding box by the specified coordinates. Args: x, y, z
(double x, double y, double z)
| 115 | * Offsets the current bounding box by the specified coordinates. Args: x, y, z |
| 116 | */ |
| 117 | public AxisAlignedBB offset(double x, double y, double z) |
| 118 | { |
| 119 | return new AxisAlignedBB(this.minX + x, this.minY + y, this.minZ + z, this.maxX + x, this.maxY + y, this.maxZ + z); |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * if instance and the argument bounding boxes overlap in the Y and Z dimensions, calculate the offset between them |
no outgoing calls
no test coverage detected