We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d2e85 commit 710a359Copy full SHA for 710a359
1 file changed
geometry/point_to_plane_distance.py
@@ -5,7 +5,8 @@ def point_to_plane_distance(
5
x: float, y: float, z: float, a: float, b: float, c: float, d: float
6
) -> float:
7
"""
8
- Return the distance between a point (x, y, z) and the plane ax + by + cz + d = 0 using the Hesse normal form.
+ Return the distance between a point (x, y, z) and the plane
9
+ ax + by + cz + d = 0 using the Hesse normal form.
10
11
Reference:
12
https://en.wikipedia.org/wiki/Hesse_normal_form
0 commit comments