Created
December 19, 2017 20:31
-
-
Save cipher982/c23a49bbfba7cef4517c2ff28a78425b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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