Skip to content

Instantly share code, notes, and snippets.

@sugar700
Created August 31, 2012 13:36
Show Gist options
  • Select an option

  • Save sugar700/3552741 to your computer and use it in GitHub Desktop.

Select an option

Save sugar700/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