UNPKG
phpjs
Version:
latest (1.3.2)
1.3.2
1.2.2
1.1.2
1.0.2
1.0.1
1.0.0
0.0.1
php.js offers community built php functions in javascript
phpjs.org
kvz/phpjs
phpjs
/
functions
/
math
/
rad2deg.js
9 lines
(8 loc)
•
300 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
rad2deg
(
angle
) {
// discuss at: http://phpjs.org/functions/rad2deg/
// original by: Enrique Gonzalez
// improved by: Brett Zamir (http://brett-zamir.me)
// example 1: rad2deg(3.141592653589793);
// returns 1: 180
return
angle *
57.29577951308232
;
// angle / Math.PI * 180
}