Tagged Questions

1
vote
2answers
76 views

How to implement dead reckoning when turning is involved?

"Dead reckoning is the process of estimating one's current position based upon a previously determined position and advancing that position based upon known or estimated speeds over elapsed time, …
13
votes
4answers
526 views

Dealing with Latency in Networked Games

I'm thinking about making a networked game. I'm a little new to this, and have already run into a lot of issues trying to put together a good plan for dead reckoning and network latency, so I'd love …
2
votes
5answers
477 views

If I am here and heading towards there and I’ve covered this much ground, where am I?

I need help writing the following method: def get_new_location(current_location, target_location, distance_travelled): ... ... return new_location where all locations are (lat,long) I …