Nodejs Degree to Radian Convert toRad()

Here you can find the source of toRad()

Method Source Code

Number.prototype.toRad = function() {
   return this * Math.PI / 180;
}

Number.prototype.toDeg = function() {
   return this * 180 / Math.PI;
}

Related

  1. toRadians(degrees)
    Math.toRadians = function(degrees){
      if (degrees < 0) {
        degrees += 360;
      return degrees / 180 * Math.PI;
    };
    
  2. degrees(radians)
    Math.degrees = function(radians){
      return radians * 180 / Math.PI;
    };
    
  3. radians(degrees)
    Math.radians = function(degrees){
      return degrees * Math.PI / 180;
    };
    
  4. degToRad(degrees)
    Math.degToRad = function(degrees){
      return degrees * Math.PI / 180;
    };
    
  5. toRad()
    Number.prototype.toRad = function() {
      return this * Math.PI / 180;
    
  6. toRad()
    Number.prototype.toRad = function() {
      return this * Math.PI / 180;
    };
    Number.prototype.toDegree = function() {
      return this / Math.PI * 180;
    };
    
  7. toRad()
    Number.prototype.toRad = function() { 
      return this * Math.PI / 180; 
    };
    Number.prototype.toDeg = function() { 
      return this * 180 / Math.PI; 
    };
    global.getPointAtDistance = function(lat, lon, brng, dist) {
      dist = dist / 6371000;
      brng = brng.toRad();
    ...
    
  8. toRad()
    Number.prototype.toRad = function() {
        return this * Math.PI / 180;
    };
    
  9. toRad()
    Number.prototype.toRad = function() {
      return (this / 180) * Math.PI;
    };