UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

9 lines (8 loc) 310 B
function deg2rad(angle) { // discuss at: http://phpjs.org/functions/deg2rad/ // original by: Enrique Gonzalez // improved by: Thomas Grainger (http://graingert.co.uk) // example 1: deg2rad(45); // returns 1: 0.7853981633974483 return angle * .017453292519943295; // (angle / 180) * Math.PI; }