How can I find the first point along a heading that is a specified distance away from a line segment?

孤者浪人 提交于 2019-12-11 08:25:55

问题


Given a starting point, a heading, a distance, and a line segment, find the first point along this heading that is the specified distance away from this line segment.

I covered two cases, but I haven't been able to cover the last one.

First case: heading away from the line. Ignore it even if the starting point is within the specified distance.

Second case: It intersects the line. I solved it using trig and triangles. Initially didn't consider the next case.

Third case: It is heading towards the line, but it does not intersect it. I think this will solve the second case as well if it's done correctly.

Three subcases:

  1. The minimum line distance is greater than the specified distance. Ignore it.

  2. The minimum line distance is equal to the specified distance. Found the points already.

  3. The minimum line distance is less than the specified distance. This means there is a perpendicular line from the along the heading to an endpoint of the line segment that is less than the distance needed. This also means that on either side of this perpendicular line will be two lines of the distance needed. One is perpendicular to the heading, while the other is closest to the same endpoint and not perpendicular to the heading. Just a matter of finding those points and seeing which one is closer to the start point.

This is where I am stuck today. Drawing it up was easy, but doing the vector calc or whatever turned out tricky.

It's possible to rephrase this as:

At what time(s) is P(t) = P0 + t*v at a distance D from the line segment L((x1,y1), (x2,y2))?

v=(sin(heading), -cos(heading)) in my case.


回答1:


Shoot mang your solution doesn't always work. I found a counter example:

Line Segment = (0,0) -> (0,14)

Start Point = (19, 6) @ heading -159.5 or 200.5 in west/counter-clockwise

It will intersect the line at (2.952, 0.0) so I ask, where does it it come within a distance of 0.0.

The result I get is incorrect.

http://img5.imageshack.us/i/failuref.png/

How I can tell which ones will work using your solution and which ones do not work depends whether the minimum starting distance between the point and the line segment creates a perpendicular line.

If I can post another picture in the next post, I will put the successful example.

I would have liked to post some code for Sage which produced those images, but the code tags are accepting python unfortunately.




回答2:


A successful result where the minimum starting distance between the point and the line segment is perpendicular to the line segment:

http://img46.imageshack.us/i/success.png/




回答3:


Hi the solution I eventually came up with.

  1. Does the ray intersect line segments that are parallel and the specified distance D away from the line segment. Just drawing a rectangle and checking the sides parallel to the line segment.

  2. Does the ray intersect circles of radius D at each end point of the line segment.

  3. Minimize for total unit time to find the first point along the ray that is D away from the line segment.

Possible Border case: Is the start point within D and heads away from the line? Up to the user how to handle this case.




回答4:


Thanks, that works. I found the alpha this way:

heading = 45.0*pi/180. #heading 45 degrees.
if x1 > x2: #line segment (x1,y1)<->(x2,y2)
    dx = x2 - x1
    dy = y2 - y1
else:
    dx = x1 - x2
    dy = y1 - y2

segmentHeading = atan2(dx, dy)

if heading > 0:
    alpha = segmentHeading + heading
else:
    alpha = -segmentHeading + heading

t = abs( (dStart - D) / -cos(alpha) ) #-cos in python, sin in C.


来源:https://stackoverflow.com/questions/2181329/how-can-i-find-the-first-point-along-a-heading-that-is-a-specified-distance-away

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!