diff --git a/src/AxisAlignedBB.php b/src/AxisAlignedBB.php index c448d1d..1c8663d 100644 --- a/src/AxisAlignedBB.php +++ b/src/AxisAlignedBB.php @@ -140,7 +140,7 @@ public function contractedCopy(float $x, float $y, float $z) : AxisAlignedBB{ /** * Returns a copy of the AxisAlignedBB extended in the given direction. - * + * * @param float $distance Negative values pull the face in, positive values push out. */ public function extendedCopy(Facing $face, float $distance) : AxisAlignedBB{ @@ -164,10 +164,10 @@ public function extendedCopy(Facing $face, float $distance) : AxisAlignedBB{ } /** - * @param float $distance Positive values pull the face in, negative values push out. - * * Inverse of extendedCopy(). * @see AxisAlignedBB::extendedCopy() + * + * @param float $distance Positive values pull the face in, negative values push out. */ public function trimmedCopy(Facing $face, float $distance) : AxisAlignedBB{ return $this->extendedCopy($face, -$distance); @@ -175,7 +175,7 @@ public function trimmedCopy(Facing $face, float $distance) : AxisAlignedBB{ /** * Returns a copy of the AxisAlignedBB stretched along the given axis. - * + * * @param float $distance Negative values reduce width, positive values increase width. */ public function stretchedCopy(Axis $axis, float $distance) : AxisAlignedBB{