Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
12answers
42k views

How do you detect where two line segments intersect? [closed]

How do I determine whether or not two lines intersect, and if they do, at what x,y point?
9
votes
1answer
225 views

Find the Intersection Points of All the Line Segments

Given a list of line segments, the easiest way to find the intersection points is to loop through the line segment list, check whether they are intersecting and record the intersection point if they ...
5
votes
1answer
730 views

Numpy and line intersections

How would I use numpy to calculate the intersection between two line segments? In the code I have segment1 = ((x1,y1),(x2,y2)) and segment2 = ((x1,y1),(x2,y2)). Note segment 1 does not equal ...
4
votes
2answers
395 views

Bentley-Ottmann Algorithm For Two Groups of Lines Segments

The Bentley-Ottmann algorithm is used for the computation of intersection of line segments. However, instead of finding the intersecting points of all the lines among themselves, I want to find the ...
3
votes
1answer
204 views

Algorithm to find intersections between polylines

Bentley-Ottmann algorithm works for finding intersections of set of straight lines. But I have lot of polylines: Is there a way to find intersections of the set of polylines? I'm figuring out, but ...
3
votes
1answer
379 views

Simple line-plane intersection on a fixed z-axis?

What is, and is there, a fast way to check where in the plane my line will intersect, if i know the plane is always in the same z-axis (so it cannot be rotated), and its width/height is infinite? ...
2
votes
2answers
151 views

Bentley-Ottmann Algorithm Implementation

Is there any existing Bentley-Ottmann Algorithm Implementation/library in C# or Java?
2
votes
2answers
729 views

Line/Plane intersection based on points

I have two points in space, L1 and L2 that defines two points on a line. I have three points in space, P1, P2 and P3 that 3 points on a plane. So given these inputs, at what point does the line ...
1
vote
1answer
177 views

HTML5 Canvas - lines self-intersection with alpha-channel

Please look at the picture (sorry, new users can't insert an image directly into post). Lines are drawn semi-transparent colors (alpha = 0.5). When the red line crosses itself, the double overlay ...
1
vote
2answers
260 views

How do I determine if a series of points (or polygon) is within a rectangular region?

I have been looking at posts about determining if a point lies within a polygon or not and the answers are either too vague, abstract, or complex for me. So I am going to try to ask my question ...
1
vote
2answers
401 views

Line - Circle intersection test in 3d world?

i have a 3d world where i have several 2d circles laying on the ground facing to the sky. how can i check if a line will intersect one of those circles frop top-to-down? i tried to search but all i ...
1
vote
1answer
88 views

How to move line segments to eliminate intersections with minimum movements?

Is there any algorithm or related work for the following problem? Given a set of line segments in 2D, how to move line segments (horizontally or vertically) to eliminate intersections so as to ...
1
vote
1answer
549 views

C#: 2D sub-Tile Line intersection

I have some problems getting an algorithm for my game to work and hope someone here can help me. Google didn't seem to be a good help as most solutions just work for full tiles. In the game units ...
0
votes
1answer
36 views

Matlab:output vector giving the x and y values of point of intersection

How do I write a function having 3 inputs (2 vectors consisting of coefficients[a b c] and vector of x values) of two line equations of form ax+by=c that outputs a vector giving x and y values of the ...
0
votes
0answers
121 views

Traverse kd tree, ray intersection

I have chosen a stack based traversal algorithm (Recursive Ray Traversal Algorithm) and I am having a little trouble understanding it. Here is what I understand: I need to find a point where the ray ...
0
votes
1answer
121 views

Is there any way to draw lines on screen by swiping and check whether they are crossing each other

We have a situation in which user will be drawing many lines on the screen and we need to find out the crossing lines and get intersection point. Is there any way to achieve this in iPhone using ...
0
votes
1answer
68 views

Determining Cross Over of Numbers

Lets say I have this data set... var a = [5,6,7]; var b = [9,8,6]; Imagine that those values were plotted the y in a (x,y) coordinate pair, and the x was the array index, how could I tell if my two ...
0
votes
1answer
206 views

Line intersection code in pascal

I'm trying to write line intersection code to detect if two lines intersect. the form i have stuff in is there are O objects that can have Lo(l subscript O) lines, each line has 2 points and each ...
0
votes
1answer
2k views

Line to Line Intersection In 3d Space

How to find the Line to Line Intersection In 3d Space ? Can anyone give me the equations?