-
-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getDistanceFromLine is returning NaN #298
Comments
@redcic75 Ran into the same issue as you. Great that you found a fix. Usually you can fork the project and create a fix on you own repository. You can then create a PR from your fork to this repo and link that PR with this issue. But if you want I can do that for you. |
What I additionally saw is, that a related issue was reopened: #129 |
@timvahlbrock : Thanks for your message. I'm working on other subjects at the time but feel free to use my proposed code to create the PR if you need it.
|
Already happened. Opened it for the other Issue, as there was more traffic. Did some cleanup and mentioned you as co-author. |
Hello @manuelbieh ,
I've just noticed that the fix you've commited after issue #227 and pushed does not deal with all the problematic cases. When we call
getDistanceFromLine
we still getNaN
whenpoint === startLine
and whenstartLine === endLine
.This fix in
getDistanceFromLine.ts
should correct this issue:I've written the following test. They fail with the current version of the code but they pass with the above fix:
I don't have the access right to push this modification on a new branch on your repo.
The text was updated successfully, but these errors were encountered: