Format docstrings

This commit is contained in:
Matthias Bisping 2023-01-04 18:50:27 +01:00
parent dfd87cb4b0
commit 06d6863cc5

View File

@ -160,7 +160,7 @@ def intersection_along_axis(alpha, beta, axis):
(-[---]----) ==> [b1, a1, a2, b2] ==> max(0, (a2 - a1)) = (a2 - a1)
b a
[-(---)----] ==> [a1, b1, b2, a2] ==> max(0, (b2 - b1)) = (b2 - b1)
b a
b a
(----[--)----] ==> [b1, a1, b2, a2] ==> max(0, (b2 - a1)) = (b2 - a1)
"""
assert axis in ["x", "y"]