Here you can find the source of toRadians(degrees)
Math.toRadians = function(degrees){ if (degrees < 0) { degrees += 360;//from w w w. j av a 2 s. c o m } return degrees / 180 * Math.PI; };
Math.deg2Rad = function(deg) return (deg / 180) * Math.PI;
function degToRad(angle) { return ((angle * Math.PI) / 180);
function degToRad(deg) { return deg * Math.PI / 180;
Math.degrees = function(radians){ return radians * 180 / Math.PI; };
Math.radians = function(degrees){ return degrees * Math.PI / 180; };
Math.degToRad = function(degrees){ return degrees * Math.PI / 180; };
Number.prototype.toRad = function() { return this * Math.PI / 180;