Skip to content

Commit 090f197

Browse files
authored
Update AxisAlignedBB.php
1 parent 0af1955 commit 090f197

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AxisAlignedBB.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public function contractedCopy(float $x, float $y, float $z) : AxisAlignedBB{
140140

141141
/**
142142
* Returns a copy of the AxisAlignedBB extended in the given direction.
143-
*
143+
*
144144
* @param float $distance Negative values pull the face in, positive values push out.
145145
*/
146146
public function extendedCopy(Facing $face, float $distance) : AxisAlignedBB{
@@ -164,18 +164,18 @@ public function extendedCopy(Facing $face, float $distance) : AxisAlignedBB{
164164
}
165165

166166
/**
167-
* @param float $distance Positive values pull the face in, negative values push out.
168-
*
169167
* Inverse of extendedCopy().
170168
* @see AxisAlignedBB::extendedCopy()
169+
*
170+
* @param float $distance Positive values pull the face in, negative values push out.
171171
*/
172172
public function trimmedCopy(Facing $face, float $distance) : AxisAlignedBB{
173173
return $this->extendedCopy($face, -$distance);
174174
}
175175

176176
/**
177177
* Returns a copy of the AxisAlignedBB stretched along the given axis.
178-
*
178+
*
179179
* @param float $distance Negative values reduce width, positive values increase width.
180180
*/
181181
public function stretchedCopy(Axis $axis, float $distance) : AxisAlignedBB{

0 commit comments

Comments
 (0)