Skip to content

Commit 710a359

Browse files
committed
Fix line length in docstring
1 parent 27d2e85 commit 710a359

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

geometry/point_to_plane_distance.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ def point_to_plane_distance(
55
x: float, y: float, z: float, a: float, b: float, c: float, d: float
66
) -> float:
77
"""
8-
Return the distance between a point (x, y, z) and the plane ax + by + cz + d = 0 using the Hesse normal form.
8+
Return the distance between a point (x, y, z) and the plane
9+
ax + by + cz + d = 0 using the Hesse normal form.
910
1011
Reference:
1112
https://en.wikipedia.org/wiki/Hesse_normal_form

0 commit comments

Comments
 (0)