Vectors - is this correct?

Started by
4 comments, last by python_regious 19 years, 7 months ago
Say I have two points, A and B. Their positions are stored in vectors. Now, if I want to get point A to move toward point B, is it ok to do this:- Subtract point A from point B. Take the result and normalise it. Multiply it by a constant, if I wish to alter the speed. Add it to point A to move it. Repeat. Thanks!
Advertisement
Yep, that's how I'd do it.
Life is all about expression, so express yourself.
Excellent! Cheers!
It should be B - A though, for it to move from A to B [smile].
If at first you don't succeed, redefine success.
Quote:Original post by python_regious
It should be B - A though, for it to move from A to B [smile].


Quote:Original post by Raymodddd
Subtract point A from point B


Life is all about expression, so express yourself.
Lol. Ok, erm... I think I need more sleep [wink] [rolleyes]...
If at first you don't succeed, redefine success.

This topic is closed to new replies.

Advertisement