summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/deg2rad.js
blob: 92375939ea0856a56dd5dec1be4c5f7b210584e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";

module.exports = function deg2rad(angle) {
  //  discuss at: http://locutus.io/php/deg2rad/
  // original by: Enrique Gonzalez
  // improved by: Thomas Grainger (http://graingert.co.uk)
  //   example 1: deg2rad(45)
  //   returns 1: 0.7853981633974483

  return angle * 0.017453292519943295; // (angle / 180) * Math.PI;
};
//# sourceMappingURL=deg2rad.js.map