(@NotNull Vector direction, @NotNull Vector position, @NotNull Block block)
| 213 | } |
| 214 | |
| 215 | private double getYPosition(@NotNull Vector direction, @NotNull Vector position, @NotNull Block block) { |
| 216 | return getPosition(direction.getY(), position.getY(), block.getY()); |
| 217 | } |
| 218 | |
| 219 | private double getZPosition(@NotNull Vector direction, @NotNull Vector position, @NotNull Block block) { |
| 220 | return getPosition(direction.getZ(), position.getZ(), block.getZ()); |
no test coverage detected