Calculate on which side of a line a point is

元气小坏坏 提交于 2019-11-30 19:41:30

问题


I need to figure out how to calculate on which side of a line a point is. I'm searching a really fast and simple collision algorithm because I just need to know on what side a object is to define a collision state.

Just like:

if(x > line.x)
    return EnumSide.LEFT;

But the line needs to be diagonally. Any ideas?


回答1:


Given a directed line from point p0(x0, y0) to p1(x1, y1), you can use the following condition to decide whether a point p2(x2, y2) is on the left of the line, on the right, or on the same line:

value = (x1 - x0)(y2 - y0) - (x2 - x0)(y1 - y0)

if value > 0, p2 is on the left side of the line.
if value = 0, p2 is on the same line.
if value < 0, p2 is on the right side of the line.

And here's a figure to explain it all:



来源:https://stackoverflow.com/questions/22668659/calculate-on-which-side-of-a-line-a-point-is

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