-
Notifications
You must be signed in to change notification settings - Fork 3
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
A code for the intersection point of 2 line segments #99
Comments
For instance, the function |
There is a condition in the function if 0. < t1 < 1. and 0. < t2 < 1: Why doesn't it include 0 and 1? |
In other words, why doesn't it have the form if 0. <= t1 <= 1. and 0. <= t2 <= 1: ? |
|
I am starting to implement intersections with Geometry Nodes. For that I will need to find an intersection point of 2 line segments.
Where can I find the code for that in the existing code base of the addon?
The text was updated successfully, but these errors were encountered: