X Tutup
Skip to content

Add point to plane distance using Hesse normal form#14358

Closed
leebyte26 wants to merge 4 commits intoTheAlgorithms:masterfrom
leebyte26:add_point_to_plane_distance
Closed

Add point to plane distance using Hesse normal form#14358
leebyte26 wants to merge 4 commits intoTheAlgorithms:masterfrom
leebyte26:add_point_to_plane_distance

Conversation

@leebyte26
Copy link

Adds a function to compute the distance between a point and a plane in 3D using the Hesse normal form.

leebyte26 and others added 2 commits March 9, 2026 18:12
Adds a function to compute the distance between a point and a plane in 3D using the Hesse normal form.
@algorithms-keeper algorithms-keeper bot added awaiting reviews This PR is ready to be reviewed tests are failing Do not merge until tests pass labels Mar 9, 2026
@algorithms-keeper algorithms-keeper bot added the require descriptive names This PR needs descriptive function and/or variable names label Mar 9, 2026
Copy link

@algorithms-keeper algorithms-keeper bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 review to trigger the checks for only added pull request files
  • @algorithms-keeper review-all to 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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

@algorithms-keeper algorithms-keeper bot removed the tests are failing Do not merge until tests pass label Mar 9, 2026
@algorithms-keeper
Copy link

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:

  • Read a point one at a time and think if it is relevant to the pull request or not.
  • If it is, then mark it by putting a x between the square bracket like so: [x]

NOTE: Only [x] is supported so if you have put any other letter or symbol between the brackets, that will be marked as invalid. If that is the case then please open a new pull request with the appropriate changes.

@algorithms-keeper algorithms-keeper bot closed this Mar 9, 2026
@algorithms-keeper algorithms-keeper bot removed the awaiting reviews This PR is ready to be reviewed label Mar 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

invalid require descriptive names This PR needs descriptive function and/or variable names

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

X Tutup