Created
December 19, 2017 20:45
-
-
Save cipher982/5664b9147d9ab42e9c0975666c35e064 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // simulate latency compensation | |
| const double latency = 0.1; | |
| px = px + v * cos(psi) * latency; | |
| py = py + v * sin(psi) * latency; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment