Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save cipher982/c23a49bbfba7cef4517c2ff28a78425b to your computer and use it in GitHub Desktop.
double deg2rad(double x) { return x * pi() / 180; }
double rad2deg(double x) { return x * 180 / pi(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment