Fix docstring formatting
This commit is contained in:
parent
acf4e81159
commit
9b0c842522
|
@ -1693,14 +1693,12 @@ class Boxes:
|
||||||
"""
|
"""
|
||||||
Return the geometry of a pices of surroundingWall with the given
|
Return the geometry of a pices of surroundingWall with the given
|
||||||
callback number.
|
callback number.
|
||||||
:param cbnr: number of the callback corresponding to
|
:param cbnr: number of the callback corresponding to this part of the wall
|
||||||
this part of the wall
|
|
||||||
:param x: width of matching roundedPlate
|
:param x: width of matching roundedPlate
|
||||||
:param y: height of matching roundedPlate
|
:param y: height of matching roundedPlate
|
||||||
:param r: corner radius of matching roundedPlate
|
:param r: corner radius of matching roundedPlate
|
||||||
:param pieces: (Default value = 1) number of separate pieces
|
:param pieces: (Default value = 1) number of separate pieces
|
||||||
:return: (left, length, right) left and right are Booleans that are
|
:return: (left, length, right) left and right are Booleans that are True if the start or end of the wall is on that side.
|
||||||
True if the start or end of the wall is on that side.
|
|
||||||
"""
|
"""
|
||||||
if pieces<=2 and (y - 2 * r) < 1E-3:
|
if pieces<=2 and (y - 2 * r) < 1E-3:
|
||||||
# remove zero length y sides
|
# remove zero length y sides
|
||||||
|
|
Loading…
Reference in New Issue