Skip to content

Instantly share code, notes, and snippets.

@cipher982
Created December 19, 2017 20:45
Show Gist options
  • Select an option

  • Save cipher982/5664b9147d9ab42e9c0975666c35e064 to your computer and use it in GitHub Desktop.

Select an option

Save cipher982/5664b9147d9ab42e9c0975666c35e064 to your computer and use it in GitHub Desktop.
// 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