Node.js examples for Geometry:Radian
Add radian conversion to numbers
if (typeof(Number.prototype.toRad) === "undefined") { Number.prototype.toRad = function() { return this * Math.PI / 180; }/*from w ww .j av a 2 s . co m*/ }