Top "Line-intersection" questions

How do you detect where two line segments intersect?

How do I determine whether or not two lines intersect, and if they do, at what x,y point?

geometry line-intersection
Numpy and line intersections

How would I use numpy to calculate the intersection between two line segments? In the code I have segment1 = ((x1,…

python performance numpy line-intersection
Test if two lines intersect - JavaScript function

I've tried searching for a javascript function that will detect if two lines intersect each other. The function will take …

javascript collision-detection intersection line-intersection
Find the shortest distance between a point and line segments (not line)

I have set of line segments (not lines), (A1, B1), (A2, B2), (A3, B3), where A,B are ending points …

python numpy intersection euclidean-distance line-intersection
Intersection between line and triangle in 3D

I have a line and a triangle somewhere in 3D space. In other words, I have 3 points ([x,y,z] …

c++ 3d line intersection line-intersection
How to find intersection points between two cubic bezier curve

I have two cubic bezier curve, curve 1:- 1st anchor-point(a1x,a1y), 1st control-point(c1x,c1y), 2…

math svg bezier line-intersection
Determine if two lines intersect

I've seen many postings here on stackoverflow, which are discussing this topic. I took a solution from stackoverflow, but I …

math geometry intersection line-intersection