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