Last active
August 29, 2015 14:07
-
-
Save Daniel-Wiedemann/b8f73feda605fa12763b to your computer and use it in GitHub Desktop.
Radians - Degrees
This file contains 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
radians = degrees * Math.PI / 180 | |
degrees = radians * 180 / Math.PI | |
0 degrees = 0 radians | |
1 degrees = pi / 180 radians oder 0,0174532925199433 radians (ca.) | |
45 degrees = pi / 4 radians oder 0,7853981633974483 radians (ca.) | |
60 degrees = pi / 3 radians oder 1,047197551196598 radians (ca.) | |
90 degrees = pi / 2 radians | |
180 degrees = pi radians | |
270 degrees = 3 pi / 2 | |
360 degrees = 2 pi radians |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment