Okay, so I need to make C go the shortest path from A to B. A to B is the hypotenuse of my right triangle, and I need to give C the arctan of said triangle. How do I do this, and does the formula have a name?
feedback
|
|
Arctan would result in degrees or radians so your A and B most likely have coordinates like (x, y). Then you do arctan((By - Ay) / (Bx - Ax)) if I remember correctly, here Bx is the x coordinate of B etc. If A and B do not have coordinates, you cannot get degrees out meaningfully. | |||||||||||
feedback
|
|
It's not clear exactly what you're asking, but I think you're trying to find the angle of the A-B line. I'm going to make the assumption that you know, or can figure out the (x,y) coordinates of both A and B, because otherwise you won't be able to solve the issue. It sounds like you've outlined the majority of the solution...the angle will be equal to the arctan of the (y/x) distance. So if we consider A(y) to be the y coordinate of A, then you're looking at something like:
Does that help? Or are you looking for something slightly different? EDIT: One thing to be aware of is the order in which you consider the terms (whether you're going from A to B or vice versa), etc. You will have to be thoughtful about this or you could end up with some sign problems. | ||||
|
feedback
|
|
Most systems have Just make sure A != B. | |||
|
feedback
|
|
If you only have one length and there is no hidden assumption here (like say, one side of the triangle has been normalized): you can't. An interesting hidden assumption might be:
Then the problem is merely hard. If
or if you have it in your library
which handles the divide by zero cases neatly... | |||||||||
feedback
|
|
If A to B is the hypotenuse of your right triangle, A to B will also be the shortest path from A to B because it is a straight line between the points. You can calculate the arctangent of either non-right angle by dividing the length of the adjacent side by the length of the opposite side because it's the inverse of the tangent. But, with the information you've described, you will be lacking either the numerator or the denominator. There are an infinite number of right triangles with a hypotenuse of a given length. | |||
|
feedback
|