Skip to content

Instantly share code, notes, and snippets.

@alifahrri
Last active October 31, 2018 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alifahrri/2d9996164f0598836153e854c431057a to your computer and use it in GitHub Desktop.
Save alifahrri/2d9996164f0598836153e854c431057a to your computer and use it in GitHub Desktop.
py code for wrapping around an angle
def norm_angle(dw) :
if math.fabs(dw) > math.pi :
return (-2*math.pi + dw) if dw > 0 else (2*math.pi + dw)
else : return dw
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment