Node.js examples for Geometry:Radian
Convert radians to degree
Math.toDegrees = function(radians) { return radians * 180 / Math.PI; };