There are three points involved:
"location": the origin point of the ray being fired
"new_location": an arbitrary point along the ray being fired
"A.location": the point of an object that is near the ray
My intended solution is as follows:
1) Find the equation of the line. The y-intercept of the line is automatically zero, as the original location is taken to be the origin.
2) Find the equation of the perpendicular line that passes through the coordinate of the object near the ray. I know the coordinate of the object near the ray and I know the slope of the perpendicular line is equal to the negative-inverse of the original slope.
3) Find the point where the two lines intersect.
4) Compare the distance between the intersection point to the object's coordinates to see if the object's central point is within X units of the intersection point. If so, the object is "touched" by the ray. If not, the ray does not touch that object and the evaluation continues.
What I'm having trouble with is the third step. How could I write a formula that would allow me to find an x coordinate and a y coordinate of an intersection point, knowing only three points, and knowing that the first line goes between the first two points and the [second] line is perpendicular to the original line and passes through the third point?
[edit]Should say "second line", not "third line".
//Find the slope of the line from starting location to ending location.
var/slope = (new_location.y - location.y) / (new_location.x - location.x)
//Find the slope of the perpendicular line to that line
var/perpend = (new_location.x - location.x) / (new_location.y - location.y) * -1
//Find the line that passes through the object's coordinates on the
// perpendicular slope, and find the intersection point between the
// perpendicular line and the original line.
//Intersection point is the x coordinate where both functions have equal
// y coordinates.
//Let original line be y = mx + 0
// where m = "slope" (as above)
//Let new line be y = mx + b
// where m = "perpend" (as above)
// and b = y intercept = y - mx = (Ay-locy) - (perpend)(Ax-locx)
//y = (slope)*x
//y = (perpend)*x + (Ay-locy) - (perpend)(Ax-locx)
//Solve as a system of equations?
This is what I worked out so far, but I'm pretty sure my math is fudged up something terrible. Math and I just don't get along sometimes.
(Incidentally, I already trap the conditions where y = 0 or x = 0 in my if-else chain, so don't worry about divide by zero errors.)
Since all liniar lines can be written down in a formula were x and y are connected to eachother maybe you could use this to see see if something is on it's path.
Lets use a simple formula for a 45 degree line
y = x
Meening everytime x increases with 1, Y does so aswell.
This is very basic and is asuming you get all that stuff.
Now if we know the x or y value of the object a, we can input this into the formula.
Lets say a's x = 1 and a's y = 5
y = x meening if we input 5 as y, its x should be 5 to be in the path of the ray.
Since its not we can conclude this object's location isnt on the line.
To get a formula you can just stick to the rule, what effect has a increase of 1 x on the y and then make sure that a's x or y is relative to the forumla.
Was that any help, or did I just insult you by telling you all this basic stuff you already knew?
Fint