In my current project I have some homing code (not exclusive to missiles) and I'm encountering some errors in the calculations when the missile is pointing straight up it starts to freak out and often turns in the wrong direction. Most of the time it works but after a full rotation it seems to break.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It sounds like your rotation is becoming either negative or greater than 360. This can cause some problems with certain calculations such as if you're doing a check for if the rotation is greater than or less than 180, a full rotation would then make it always greater than 180. Try adding something like this to your code:
|
|||
|
|