Skip to content

Instantly share code, notes, and snippets.

@LunaBorowska
Created August 31, 2012 13:36
Show Gist options
  • Save LunaBorowska/3552741 to your computer and use it in GitHub Desktop.
Save LunaBorowska/3552741 to your computer and use it in GitHub Desktop.
>>> math.atan2(0, 0)
0.0
>>> math.atan2(0, -0)
0.0
>>> math.atan2(0, 0.)
0.0
>>> math.atan2(0, -0.)
3.141592653589793
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment