Add point to plane distance using Hesse normal form#14358
Add point to plane distance using Hesse normal form#14358leebyte26 wants to merge 4 commits intoTheAlgorithms:masterfrom
Conversation
Adds a function to compute the distance between a point and a plane in 3D using the Hesse normal form.
for more information, see https://pre-commit.ci
…yte26/Python into add_point_to_plane_distance
There was a problem hiding this comment.
Click here to look at the relevant links ⬇️
🔗 Relevant Links
Repository:
Python:
Automated review generated by algorithms-keeper. If there's any problem regarding this review, please open an issue about it.
algorithms-keeper commands and options
algorithms-keeper actions can be triggered by commenting on this PR:
@algorithms-keeper reviewto trigger the checks for only added pull request files@algorithms-keeper review-allto trigger the checks for all the pull request files, including the modified files. As we cannot post review comments on lines not part of the diff, this command will post all the messages in one comment.NOTE: Commands are in beta and so this feature is restricted only to a member or owner of the organization.
|
|
||
|
|
||
| def point_to_plane_distance( | ||
| x: float, y: float, z: float, a: float, b: float, c: float, d: float |
There was a problem hiding this comment.
Please provide descriptive name for the parameter: x
Please provide descriptive name for the parameter: y
Please provide descriptive name for the parameter: z
Please provide descriptive name for the parameter: a
Please provide descriptive name for the parameter: b
Please provide descriptive name for the parameter: c
Please provide descriptive name for the parameter: d
Closing this pull request as invalid@leebyte26, this pull request is being closed as none of the checkboxes have been marked. It is important that you go through the checklist and mark the ones relevant to this pull request. Please read the Contributing guidelines. If you're facing any problem on how to mark a checkbox, please read the following instructions:
NOTE: Only |
Adds a function to compute the distance between a point and a plane in 3D using the Hesse normal form.