-
Notifications
You must be signed in to change notification settings - Fork 233
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
Distance Line Line wrong result #4423
Comments
it's behaving as intended, according to the code that implements that function.
Lines 2479 to 2510 in 675f70c
|
i think your suggestion is valid. |
when the |
One solution is to calculate the angle between the line's directions and if it is 0 or 180, output false for intersection. |
Well, after analysing it a bit, the problem just stems from a little mistake from the author of the function : instead of |
When applying this node to parrallel lines, intersection flag is True instead of False (the distance between lines is far greater than Tolerance). Could this be corrected?
The text was updated successfully, but these errors were encountered: