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