Say I have two 2D vectors, one for an objects current position and one for that objects previous position. How can I work out the direction of travel?
This image might help understand what I'm after:
Thanks
-James
|
|
The direction vector of travel will be the difference of the two position vectors,
Now when you ask for the direction angle, that depends what direction you want to measure the angle against. Is it against the x axis? Go with Radu's answer. Against an arbitrary vector? See justjeff's answer. Edit: To get the angle against the y-axis:
the tangent of the angle is the ratio of the x-coordinate of the difference vector to the y-coordinate of the difference vector. So
Where arctan means inverse tangent. Not to be confused with the reciprocal of the tangent, which many people do, since they're both frequently denoted tan^-1. And make sure you know whether you're working in degrees or radians. |
|||||||||||||
|
|
If you're in C (or other language that uses the same function set) then you're probably looking for the
That angle will be from the vertical axis, as you marked, and will be measured in radians (God's own angle unit). |
|||
|
|
|
Be careful to use atan2 to avoid quadrant issues and division by zero. That's what it's there for.
However, if you don't care about whether it's a +ve or -ve angle, just use the dot product rule (less CPU load):
Note that in either code section above, if one ( or both ) vectors are close to 0 length this is going to fail. So you might want to trap that somehow. |
||||
|
|
|
Still not sure what you mean by rotation matrices, but this is a simple case of getting an azimuth from a direction vector. The complicated answer: Normally you should pack a few conversion/utility functions with your 2D vectors: one to convert from X,Y (carthesian) to Theta,R (polar coordinates). You should also support basic vector operations like addition, substraction and dot product. Your answer in this case would be:
Where ToPolarCoordinate() and ToCarhtesianCoordinate() are two reciprocal functions switching from one type of vector to another. The simple one:
|
|||
|